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

		why += isEmpty(ContactUs.brides_name.value, "BRIDES FULL NAME");
		if (why != "") {
			alert(why);
			ContactUs.brides_name.focus();
			return false;
		}
		why += isEmpty(ContactUs.grooms_name.value, "GROOMS FULL NAME");
		if (why != "") {
			alert(why);
			ContactUs.grooms_name.focus();
			return false;
		}
		
		why += isEmpty(ContactUs.Telephone.value, "TELEPHONE");
		if (why != "") {
			alert(why);
			ContactUs.Telephone.focus();
			return false;
		}
		
		why += checkEmail(ContactUs.email.value, "EMAIL ADDRESS");
		if (why != "") {
		alert(why);
		ContactUs.email.focus();
		return false;
		}
			
		why += isEmpty(ContactUs.Postal.value, "POSTAL ADDDRESS");
		if (why != "") {
			alert(why);
			ContactUs.Postal.focus();
			return false;
		}
		
		why += isEmpty(ContactUs.Suburb.value, "SUBURB");
		if (why != "") {
			alert(why);
			ContactUs.Suburb.focus();
			return false;
		}
		
				
		why += isEmpty(ContactUs.State.value, "STATE");
		if (why != "") {
			alert(why);
			ContactUs.State.focus();
			return false;
		}
		
		why += isEmpty(ContactUs.Postcode.value, "POSTCODE");
		if (why != "") {
			alert(why);
			ContactUs.Postcode.focus();
			return false;
		}
		
		why += isEmpty(ContactUs.Month.value, "MONTH OF PREFERRED DATE");
		if (why != "") {
			alert(why);
			ContactUs.Month.focus();
			return false;
		}
		
		why += isEmpty(ContactUs.Year.value, "YEAR OF PREFERRED DATE");
		if (why != "") {
			alert(why);
			ContactUs.Year.focus();
			return false;
		}
		
		why += isEmpty(ContactUs.People.value, "ESTIMATED NUMBER OF PEOPLE");
		if (why != "") {
			alert(why);
			ContactUs.People.focus();
			return false;
		}
		
			
	return true;
}

