function entrada(){
	/*if (document.form_campus.usuario.value == ""){
		alert("Por favor, ingrese el nombre de usuario.");
		return false;

	}
	
	if(document.form_campus.clave.value == ""){
		alert("Por favor, ingrese la contraseņa.");
		return false;

	}
	*/
	abrircampus();
	return true;
}



function abrircampus(){
	var width = screen.availWidth;
	var height = screen.availHeight;
	var left = (screen.width/2) - (width/2);
	var top = (screen.height/2) - (height/2);
	var styleStr = 'fullscreen=1,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width='+1200+',height='+650+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
	window.open("login.php", 'campus', styleStr);
}
