// JavaScript Document

function emailPopup() {
	leftPos = 0;
	topPos = 0;
	if (screen) {
		leftPos = (screen.width / 2) - 250;
		topPos = (screen.height / 2) - 250;
	}
	mywindow = window.open ("sendmail.php", "emailWindow", "location=0, status=1, scrollbars=0, width=500, height=500, left="+leftPos+",top="+topPos);
}