var IE = document.all ? true : false;
if (!IE) document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = calcularPosicion;
var tempX = 0;
var tempY = 0;

function calcularPosicion(e) {
	if (IE) {
		tempY = event.screenY;
	}
	else {
		tempY = e.screenY;
	}  
	tempX = ((screen.availWidth - 400) / 2);
	if (tempX < 0) {
		tempX = 0;
	}
	if (tempY < 0) {
		tempY = 0;
	}
	return true;
}
/*function mostrarMail(usuario, servidor) {
	myWindow=window.open('','','width=200,height=100')
	myWindow.document.write("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">
						<meta name=\"AUTHOR\" content=\"David Marsán, 2005/2006\">	<title>e-m@il</title>
						<link rel=\"stylesheet\" type=\"text/css\" href=\"/style/style2.css\">
						</head>
						<body background=\"/eps/imagen/fondouam6.jpg\" marginwidth=\"0\" marginheight=\"0\">
						<br><center><b>DIRECCI&Oacute;N DE CORREO ELECTR&Oacute;NICO</b>
						<hr><a href=\"mailto:" + usuario + "@" + servidor + "\">" + usuario + "@" + servidor + "</a></center><br></body></html>");
	

	
	myWindow.focus()
//	alert (usuario + "@" + servidor);

}*/
function mostrarMail(usuario,servidor) {
	myWindow=window.open('','','width=400,height=300')
	myWindow.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"/eps/style/style2.css\">")
	myWindow.document.write("<body background=\"/eps/imagen/fondouam6.jpg\" marginwidth=\"0\" marginheight=\"0\">")
	myWindow.document.write("<br><center><b>DIRECCI&Oacute;N DE CORREO ELECTR&Oacute;NICO</b><hr>")
	myWindow.document.write("<a href=\"mailto:" + usuario + "@" + servidor + "\">" + usuario + "@" + servidor + "</a></center><br>")
	myWindow.focus()
}
