function CierraTodo(item) {
	divs=document.getElementsByTagName("DIV");
	for (i=0;i<divs.length;i++) {
		if (divs[i].id!=item){ //si es él mismo no lo trato
	    	divs[i].style.display="none";
    	 	key=document.getElementById("x" + divs[i].id);
		}
	}
}

function AbreMenu(item) {
	obj=document.getElementById(item);
   	visible=(obj.style.display!="none")
   	key=document.getElementById("x" + item);
   	if (visible) {
		obj.style.display="none";
	} else {
		obj.style.display="block";
	}
}

function AbreVentana(url, x, y, h, w, sb, loc) {
	MiVentana = window.open (url,'MiVentana','location='+loc+', scrollbars='+sb+',left='+x+',top='+y+',height='+h+',width='+w);
}
