function mailtopopup()
{
	var location = encodeURI( window.location.href );
	var w = 300;
	var h = 450;
	window.open('/mail/' + encodeURI(location) , "popup", "left=" + ((screen.width/2)-(w/2)) + ",top=" + ((screen.height/2)-(h/2)-20) + ",width="+w+",height="+h+",scrollbars=no,toolbar=no,location=no");
}