function checkWholeForm(Contact) {
	var why = "";

		why += isEmpty(Contact.fname.value, "FIRST NAME");
		if (why != "") {
			alert(why);
			Contact.fname.focus();
			return false;
		}
		why += isEmpty(Contact.surname.value, "SURNAME");
		if (why != "") {
			alert(why);
			Contact.surname.focus();
			return false;
		}

		why += checkEmail(Contact.email.value, "EMAIL ADDRESS");
		if (why != "") {
		alert(why);
		Contact.email.focus();
		return false;
		}
		
		why += isEmpty(Contact.phone.value, "PHONE NUMBER");
		if (why != "") {
		alert(why);
		Contact.phone.focus();
		return false;
		}
		
		why += isEmpty(Contact.referral.value, "HOW DID YOU HEAR ABOUT US");
		if (why != "") {
		alert(why);
		Contact.referral.focus();
		return false;
		}
		
	return true;
}
