<!-- Begin
function checkfreesearch() {
missinginfo = "";
txtemail = document.freesearch.txtemail.value
if ((txtemail == "") || 
(txtemail.indexOf('@') == -1) || 
(txtemail.indexOf('.') == -1)) {
missinginfo += "\nYour email address";
}
txtphonenumber = document.freesearch.txtphonenumber.value
if ((txtphonenumber == "")){
missinginfo += "\nYour Phone Number: ";
}
strCAPTCHA = document.freesearch.strCAPTCHA.value
if ((strCAPTCHA == "")){
missinginfo += "\nSecurity Code: ";
}
if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"You failed to correctly fill in your:\n" +
missinginfo + "\n_____________________________" +
"\nPlease re-enter and submit again!";
alert(missinginfo);
return false;
}
else return true;
}
//  End -->

