function checkWholeForm(theForm) {
    var why = "";
    why += checkUsername(theForm.username.value);
    why += checkPassword(theForm.password.value);
    why += isDifferent(theForm.password.value, theForm.confirmpword.value);
	why += isEmpty(theForm.fname.value,"First Name");
	why += isEmpty(theForm.lname.value,"Last Name");
	why += checkPhone(theForm.phone.value);
	why += isEmpty(theForm.address1.value,"Street Address");
	why += isEmpty(theForm.city.value,"City");
	why += checkDropdown(theForm.prov.selectedIndex, "Province/State");
    why += isEmpty(theForm.postal.value,"Postal/Zip Code");
	why += checkDropdown(theForm.country.selectedIndex, "Country");
	why += checkEmail(theForm.email.value);
	why += checkDropdown(theForm.referrer.selectedIndex, "Referrer");
    if (why != "") {
       alert(why);
       return false;
    }
return true;
}