function getE(eUrl)
{
		var myAjax = new ajax 
				(
					eUrl, 
					{
						onComplete: getEComplete
					}
				);
}

function getEComplete(originalRequest)
{
	window.location = "m" + "a" + "i" + "l" + "t" + "o" + ":" + originalRequest.responseText;
}
