function contactPagePopup() {	var popupURL = '/popups/mail_dpants.php';	var mywidth = 500;	var myheight = 250;	if(window.popup) {		window.popup.location=popupURL;		window.popup.focus();	} else {		var popup=window.open(popupURL,'popup','top=7,screenY=7,left=7,screenX=7,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+mywidth+',height='+myheight);		if(navigator.appName.substring(0,8)=="Netscape" || navigator.appName=="Microsoft Internet Explorer") {			popup.location=popupURL;			popup.opener=self;		}		popup.focus();	}}

function PagePopup(popupURL) {	//var popupURL = '/popups/zipcodes.php';	var mywidth = 600;	var myheight = 800;	if(window.popup) {		window.popup.location=popupURL;		window.popup.focus();	} else {		var popup=window.open(popupURL,'popup','top=7,screenY=7,left=7,screenX=7,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+mywidth+',height='+myheight);		if(navigator.appName.substring(0,8)=="Netscape" || navigator.appName=="Microsoft Internet Explorer") {			popup.location=popupURL;			popup.opener=self;		}		popup.focus();	}}

function IsFormComplete(FormName) {	var x       = 0	var FormOk  = true	while ((x < document.forms[FormName].elements.length) && (FormOk)) {		if (document.forms[FormName].elements[x].value == '' )  { 			alert('Oops.  It looks like the field '+document.forms[FormName].elements[x].name+ ' is blank or invalid.  Let\'s try try that again.')			document.forms[FormName].elements[x].focus()			FormOk = false 		}		x ++	}	return FormOk}