// JavaScript Document
// Documento creado por Estudio Adumbro, sc.

function paginaOnLoad(){	
	if(parent.mainFrame!=null){ //Si el navegador admite marcos
		preparaMenu();
	}
}

//Al hacer click en una opción del menú se despliega o se oculta
function ocultaMuestraMenu(codigo){
	if(document.getElementById('divSubm'+codigo).style.display==''){ 
		document.getElementById('divSubm'+codigo).style.display='none';
		if(parent.mainFrame!=null) {
			parent.estadoMenu[codigo]=0; //Guardamos que queda sin desplegar esta opción del menú
		}
	}else{
		document.getElementById('divSubm'+codigo).style.display='';
		if(parent.mainFrame!=null){
			parent.estadoMenu[codigo]=1; //Guardamos que queda desplegada esta opción del menú
		}
	}
}

//Al cargar una página de nuevo se deja el menú (desplegado u oculto) como estaba en la página anterior
function preparaMenu(){
	for(i=0;i<4;i++){
		if(parent.estadoMenu[i]==1){ //El elemento de menú estaba desplegado
			document.getElementById('divSubm'+i).style.display='';
		}else{
			document.getElementById('divSubm'+i).style.display='none';
		}
	}
}

/*Funciones para abrir ventanas */
function abrirMapa(){
	window.open('img/mapacolegio.gif','ubicacion','fullscreen=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=710,height=710,left=0,top=0,statusbar=no');
}
function abrirImagen(nombre,ancho,alto){
	window.open('../img/colegio/'+nombre,'ubicacion','fullscreen=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+ancho+',height='+alto+',left=200,top=250,statusbar=no');
}
function ir(url){
	window.top.location.href=url;
}
function irPagNueva(url){
			window.open(url,'paginaNueva','fullscreen=0,toolbar=1,location=1,status=0,menubar=1,scrollbars=1,resizable=1,width=800,height=600,left=10,top=10','1');
		}
function irSeguimientoEscolar(){
			window.open('https://accescentro.mentorvox.com/accesos/calasanz/ac_calasanz.asp','mentorVox','fullscreen=0,toolbar=1,location=1,status=1,menubar=1,scrollbars=1,resizable=1,width=800,height=600,left=10,top=10','1');
			//window.open('http://www.mentorvox.com/accesos/calasanz/ac_calasanz.asp','mentorVox','fullscreen=1,toolbar=0,location=0,status=0,menubar=1,scrollbars=1,resizable=1,width=800,height=600,left=10,top=10','1');
		}
