/**
 * @author albert
 */

var actiu=null;
	
function mostra (id){
	if (actiu == id) { //desactivem
		oculta = document.getElementById(actiu);
		oculta.style.display = "none";
		actiu = null;
		return
	}
	else 
		if (actiu != null && actiu != id) {
			var oculta = document.getElementById(actiu);
			oculta.style.display = "none";
			var visible = document.getElementById(id);
			visible.style.display = "block";
			actiu = id;
		}
		else {
			var visible = document.getElementById(id);
			visible.style.display = "block";
			actiu = id;
		}
}


function compra(id){
	window.open('dades_compra.php?id='+id+'&lang=ca' ,'tpv','width=725,height=600,scrollbars=no,resizable=yes,status=yes,menubar=no,location=no');
}


function menuR() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("menu");
for (i=0; i<navRoot.childNodes.length; i++) {
	node = navRoot.childNodes[i];
	if (node.nodeName=="LI") {
		node.onmouseover=function() {
		this.className+=" over";
  	}
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;


