// JavaScript Document
function ampliar_imagen(imagen,w,h) {
	window.open("../include/cargarfoto.php?foto="+imagen,"fotoampliada","width="+w+",height="+h);	
}

function abre_submenu() {
	var m=document.getElementById("menu_submenu");
	if (m.style.height=="0px" || m.style.height=="") {
		m.style.height="auto";
	} else {
		m.style.height="0px";
	}
}