// Goto the first field on the form
function toForm() {
document.requestForm.yourname.focus();
}

// Form validation
function checkWholeForm(thisForm) {
    var why = "";

    why += isEmpty(thisForm.your_name.value,"Name","A");
    why += isEmpty(thisForm.title.value,"Title","A");
    why += isEmpty(thisForm.company.value,"Company","A");
    why += isEmpty(thisForm.address.value,"Address","An");
    why += isEmpty(thisForm.city.value,"City","A");
    why += isEmpty(thisForm.zip.value,"Postal/Zip","A");
    why += checkNum(thisForm.telephone.value,"Phone Number",true,1);
    why += checkEmail(thisForm.email.value,"Email address",true);

    if (why != "") {
       alert(why);
       return false;
    } else {
       return true;
    }
}
