// JavaScript Document

<!-- Begin
function verify() {
themessage = "";

if (document.theform.name.value=="") {
themessage += "\n       -  Name";
}
if ((document.theform.email.value == "") || 
(document.theform.email.value.indexOf('@') == -1) || 
(document.theform.email.value.indexOf('.') == -1)) {
themessage += "\n       -  E-mail";
}
if (document.theform.addr.value=="") {
themessage += "\n       -  Address";
}
if (document.theform.addr.value=="") {
themessage += "\n       -  City";
}
if((document.theform.country.value == "") ||
(document.theform.country.value == "Choose Country")) {
themessage += "\n       -  Country";
}



if((document.theform.phone.value.length < 5 ) ||
(document.theform.phone.value.length > 15)) {
themessage += "\n       -  Work Phone 5 - 15 Digits";
}
if((document.theform.enquiry.value.length < 20 ) ||
(document.theform.enquiry.value.length > 300)) {
themessage += "\n       -  Enquiry between 20 - 300 Characters           ";
}

if (themessage != "") {
themessage ="------- You Failed to Correctly Enter -------\n" + themessage + "\n" + "\n ------- Please Fillup the Form Again -------";
alert(themessage);
return false;
}
else return true;

}
//  End -->
