
function OpenEmailWindow(prefix, suffix) {
	//Open a separate window for submitting an email
	w = screen.Width;
	h = screen.Height;

	var popW = 510, popH = 475;
	var topPos = 0, leftPos = 0;

	url="/email_form.asp?prefix=" + prefix + "&suffix=" + suffix;
	window.open(url,"email_form","width=" + popW + ",height=" + popH + ",status=yes,resizable=no,left=" + leftPos + ",top=" + topPos + "");
}
