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) {
	referencia = open("/esp/showmail.php?usuario="+usuario+"&servidor="+servidor, "email", "width=600,height=200,scrollbars=no,toolbar=no");
	referencia.moveTo(tempX, tempY);
	referencia.focus();
}

