<!-- //
//
// IF YOU SEE THIS UPGRADE YOUR BROWSER !!!
//
function checkFields() {
missinginfo = "";
if (document.form.Name.value == "") {
missinginfo += "\n     -  Contact Name";
}
if(document.form.Address.value == "") {
missinginfo += "\n     -  Address";
}
if(document.form.City.value == "") {
missinginfo += "\n     -  City";
}
if(document.form.State.value == "") {
missinginfo += "\n     -  State";
}
if(document.form.Zip.value == "") {
missinginfo += "\n     -  Zip Code";
}

if(document.form.PHORM_FROM.value == "") {
missinginfo += "\n     -  Email";
}


if (missinginfo != "") {
missinginfo ="Required Fields Missing\nYou failed to correctly fill in your:" +
missinginfo + "\nPlease enter and submit again!";
alert(missinginfo);
return false;
}
else return true;
}



////  onBlur="validate1(this)" //////

function validate1(field) {
var valid = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!@%$&*+?:;.,~'-=?\()[]_/<>^{}|$ "
var ok = "yes";
var temp;
for (var i=0; i<field.value.length; i++) {
temp = "" + field.value.substring(i, i+1);
if (valid.indexOf(temp) == "-1") ok = "no";
}
if (ok == "no") {
alert("Invalid Entry, Check For Line Breaks or Special Characters (#).\nPlease Let Text Wrap Without Breaks.");
field.focus();
field.select();
   }
}




function SE() {
smut="#@&*%!#@&*%!#@&*%!";
cmp="bastard sex shit fuckers damn fuck cum cunt prick pecker ass "
+"asshole pedophile cock suckers penis dong twat";
txt=document.form.Comments.value;
tstx="";
for (var i=0;i<16;i++){
pos=cmp.indexOf(" ");
wrd=cmp.substring(0,pos);
wrdl=wrd.length
cmp=cmp.substring(pos+1,cmp.length);
while (txt.indexOf(wrd)>-1){
pos=txt.indexOf(wrd);
txt=txt.substring(0,pos)+smut.substring(0,wrdl)
+txt.substring((pos+wrdl),txt.length);
   }
}
 document.form.Comments.value=txt;
}

//  End -->