<!-- hide script from old browsers 
function validate() {
var theMessage = "Before sending this information: \n--------------------------------------\n";
var noErrors = theMessage
if (document.form1.name.value=="") {theMessage = theMessage + "\n > Please enter your name";}
if (document.form1.hphone.value=="") {theMessage = theMessage + "\n > Enter your phone number";}
if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(document.form1.email.value)){
theMessage = theMessage + "\n > Enter a valid email address";}
if (document.form1.address.value=="") {theMessage = theMessage + "\n > Enter your mailing address";}
if (document.form1.city.value=="") {theMessage = theMessage + "\n > Enter your city, state & zip";}
if (theMessage == noErrors) {return true;
} else {
alert(theMessage);
return false;
}
}	

function open_disclaim(){window.open('disclaimer.php', 'disclaim', 'left=5,top=0,menubar=0,location=0,scrollbars=1,resizable=1,status=0,width=440,height=425') ;}

// end hiding script from old browsers -->

<!--

if (parent.frames.length > 0) {
    parent.location.href = self.document.location
}


//-->