function popUp(URL) {
//eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=675,height=500,left = 250,top = 159');");
    window.open(URL, '_blank', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=675,height=500,left = 250,top = 159');
}

function OpenEmailWindow(prefix, suffix) {
	//Open a separate window for submitting an email
	w = screen.Width;
	h = screen.Height;

	var popW = 510, popH = 500;
	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 + "");
}

