
/* Opens a mail window */
function email( ) 
{
	var width = 640;
	var height = 580;
	var X = (screen.availWidth-width)/2;
	var Y = (screen.availHeight-height)/2;
	var p = "height=" + height + ",width=" + width + ",scrollbars=no" + ",screenX=" + X + ",screenY=" + Y;
	fVideoOpened = window.open("tools/mail/mail.php","",p);
}


