//Funciones Mail y Busqueda
	function enter(e)
	{
		var key = window.event ? e.keyCode : e.which;
		var keychar=String.fromCharCode(key);
		if(key==13)
		{
			ingresar();
		}
		return keychar;
	}
	function enter2()
	{
			if(document.buscar.Terms.value=='  Búsqueda' || document.buscar.Terms.value=='')
			{
				alert('Escribe por favor alguna palabra a buscar.');
				document.buscar.Terms.focus();
				return false;
			}
	}
	function ingresar()
	{
		var w=window.open('','w');
		if(document.log.servidor.value==1)
		{
			//document.log.action="http://uaeh.reduaeh.mx/cgi-bin/openwebmail.pl','width=249,height=199,scrollbars=yes');
			document.log.action="http://mail.uaeh.edu.mx/cgi-bin/openwebmail.pl";
			//window.close();
		}
		else
		{
			document.log.action="http://uaeh.edu.mx/cgi-bin/openwebmail.pl";
			//window.close();
		}

		if(!w)
		{
			document.log.target="_self";
		}
		else
		{
			document.log.target="w";		
		}
		document.log.submit();
		document.log.password.value='';
		document.log.loginname.value='';
	}

