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

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

		why += checkEmail(Contact.email.value, "EMAIL ADDRESS");
		if (why != "") {
		alert(why);
		Contact.email.focus();
		return false;
		}
		
		why += isEmpty(Contact.comments.value, "COMMENT OR QUESTION");
		if (why != "") {
			alert(why);
			Contact.comments.focus();
			return false;
		}
		
		
	return true;
}
