function Click(elemento) {
	if(navigator.appVersion != '4.0 (compatible; MSIE 6.0; Windows NT 5.1)') {
		var container = document.getElementById('prodList');
		var area = container.getElementsByTagName('div');
		var elemento = elemento.getElementsByTagName('p')[0];
		for (i=0; i < area.length; i++) {
			var num = i%2;
			if (!num) {
				var tag = area[i].getElementsByTagName('p');
				tag[0].style.backgroundImage = 'url(/img-layout/bot-inf-show.jpg)';
				if (elemento.id == 'off') var status = true;
				tag[0].id = '';
				if (status)	elemento.id = 'off';
			}
		}
		if (!elemento.id || elemento.id == 'on') {
			elemento.style.backgroundImage = 'url(/img-layout/bot-inf-hide.jpg)';
			elemento.id = 'off';
		} 
		else if (elemento.id == 'off') {
			elemento.style.backgroundImage = 'url(/img-layout/bot-inf-show.jpg)';
			elemento.id = 'on';
		}
	}
}