function mailingListMaintenance() {
	var w = Math.floor(screen.width*3/4);
	var h = Math.floor(screen.height/2);
	var l = Math.floor( (screen.width - w) / 2);
	var t = Math.floor( (screen.height - h) / 2);
	var winParms = "top=" + t + ",left=" + l + ",height=" + h + ",width=" + w + ",resizeable";
	var win = window.open("", "CommentWin", winParms);
	with (win) {
		document.open("text/html");
		document.write("<html><head><title>Add/Remove From Mailing List</title>");
		document.write("<scr" + "ipt language=\"JavaScript\">func" + "tion submitForm() { ");
		document.write("var form=document.forms[0]; if (form.InternetAddress.value == \"\") {");
		document.write("alert(\"Please provide your internet address.\"); form.InternetAddress.focus(); return false; } ");
		document.write("form.submit(); }");
		document.write("func" + "tion cancelForm() {");
		document.write("if (confirm(\'Are you sure you do not want to update the mailing list at this time?\')) { window.close(); } }");
		document.write("</scr" + "ipt>");
		document.write("<style type=\"text/css\">");
		document.write(".Label { font-family:Verdana, Arial,sans-serif; color:#483D8B; font-weight:bold; }");
		document.write(".InputField { font-family:Verdana, Arial,sans-serif; color:#483D8B; background-color:Silver; }");
		document.write(".SubmitBtn { font-size:11px; font-weight:bold; background-color:#483D8B; color:White; }");
		document.write("</style></head>");
		document.write("<body>");
		document.write("<form method=\"post\" action=\"/customer/bkp/mailing.nsf/frmRequest?CreateDocument\">");
		document.write("<input type=\"hidden\" name=\"ReturnURL\" VALUE=\"\" />");
		document.write("<span class=\"Label\">Do you want your address added or removed?<br /></span>");
		document.write("<input type=\"radio\" name=\"RequestType\" checked value=\"Add\" /><span class=\"Label\">Add my internet address</span>");
		document.write("&nbsp;&nbsp;<input type=\"radio\" name=\"RequestType\" value=\"Remove\" /><span class=\"Label\">Remove my internet address</span>");
		document.write("<br /><br /><span class=\"Label\">Your email address: </span>");
		document.write("<input class=\"InputField\" size=\"40\" name=\"InternetAddress\" type=\"text\" value=\"\" /><br />");
		document.write("<input name=\"MailingListName\" type=\"hidden\" value=\"Mailing List-New Tips\" /><br />");
		document.write("<input class=\"SubmitBtn\" type=\"button\" value=\"Save\" onclick=\"submitForm()\" />");
		document.write("&nbsp;&nbsp;<input class=\"SubmitBtn\" type=\"button\" value=\"Cancel\" onclick=\"cancelForm()\" />");
		document.write("<br /><br /><span class=\"Label\">Note: This mailing list will be used ONLY for notifications when");
		document.write(" something new is added to the Breaking Par web site. We will not use this mailing list for any other");
		document.write(" purposes, and we will NEVER give or sell our mailing list to a third party.</span>");
		document.write("<br /><br /><span class=\"Label\">Notifications will come from newstuff@breakingpar.com, so if you");
		document.write(" block certain email addresses, make sure to not block that one.</span>");
		document.write("</form></body></html>");
	}
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	win.window.document.forms[0].InternetAddress.focus();
}

