// Moower
// Javascript con todo el contenido con las funciones pertenecientes a la página principal

var privado = 0;
var refresco=null;
var menu = 1;

function fprivado (){
	privado = 1;
}

function fprivado1 (){
	if (privado==1){
		privado = 0;
		Cargando();
		open("privado.html","iframe_dest","");
	}
}

function rotulo_status(){
	window.status='La P\xE1gina de Moower';
	refresco=setTimeout("rotulo_status()",100);
}

function Menu_drch(){
	if (menu==1){
		menu = 2;
		document.getElementById("DIV1").style.display="none";
		document.getElementById("DIV2").style.display="";
	}	else if (menu==2){
		menu = 1;
		document.getElementById("DIV2").style.display="none";
		document.getElementById("DIV1").style.display="";
	}
}

function Menu_izq(){
	if (menu==1){
		menu = 2;
		document.getElementById("DIV1").style.display="none";
		document.getElementById("DIV2").style.display="";
	}	else if (menu==2){
		menu = 1;
		document.getElementById("DIV2").style.display="none";
		document.getElementById("DIV1").style.display="";
	}
}

function CargaPagina(){
	document.getElementById("DIVCarga").style.display="none";
	document.getElementById("DIViframe").style.display="";
}


function Cargando(){
	document.getElementById("DIVCarga").style.display="";
	document.getElementById("DIViframe").style.display="none";
}

rotulo_status();