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

		why += isEmpty(booking.Name.value, "YOUR FULL NAME");
		if (why != "") {
			alert(why);
			booking.Name.focus();
			return false;
		}
		why += isEmpty(booking.Business_Name.value, "YOUR BUSINESS NAME");
		if (why != "") {
			alert(why);
			booking.Business_Name.focus();
			return false;
		}
		
		why += isEmpty(booking.Address.value, "YOUR ADDRESS");
		if (why != "") {
			alert(why);
			booking.Address.focus();
			return false;
		}

		why += isEmpty(booking.Phone_Home.value, "YOUR HOME PHONE NUMBER");
		if (why != "") {
			alert(why);
			booking.Phone_Home.focus();
			return false;
		}
		
		why += isEmpty(booking.Phone_Work.value, "YOUR WORK PHONE NUMBER");
		if (why != "") {
			alert(why);
			booking.Phone_Work.focus();
			return false;
		}
		
		why += checkEmail(booking.email.value, "YOUR EMAIL ADDRESS");
		if (why != "") {
		alert(why);
		booking.email.focus();
		return false;
		}
		
		why += isEmpty(booking.Where_did_you_hear_of_the_fair.value, "WHERE DID YOU HEAR OF THE FAIR");
		if (why != "") {
			alert(why);
			booking.Where_did_you_hear_of_the_fair.focus();
			return false;
		}
		
		why += isEmpty(booking.Items_for_Sale.value, "DESCRIPTION OF ITEMS FOR SALE");
		if (why != "") {
		alert(why);
		booking.Items_for_Sale.focus();
		return false;
		}
		
		why += isEmpty(booking.Terms_and_Conditions.value, "YOU MUST ACCEPT THE TERMS & CONDITIONS");
		if (why != "") {
		alert(why);
		booking.Terms_and_Conditions.focus();
		return false;
		}
		
	return true;
}
