function validateOrder(){
	if (document.TakeOut.Business.value==""){
		alert("Please enter your business name.");
		document.TakeOut.Business.focus();
		return false;
	}
	
	if(document.TakeOut.ContactName.value==""){
		alert("Please enter a contact name.");
		document.TakeOut.ContactName.focus();
		return false;
	}
	
	if(document.TakeOut.email.value==""){
		alert("Please enter a valid email address.");
		document.TakeOut.email.focus();
		return false;
	}
	
	if(document.TakeOut.ContactPhone.value==""){
		alert("Please enter a phone number where we can contact you with any issues with your order.");
		document.TakeOut.ContactPhone.focus();
		return false; 
	}
	
	if(document.TakeOut.mailingAddress.value==""){
		alert("Please enter a mailing address so we can mail out your tickets.");
		document.TakeOut.mailingAddress.focus();
		return false; 
	}
	
	if(document.TakeOut.city.value==""){
		alert("Please enter a mailing city so we can mail out your tickets.");
		document.TakeOut.city.focus();
		return false; 
	}
	
	if(document.TakeOut.state.value==""){
		alert("Please enter a mailing state so we can mail out your tickets.");
		document.TakeOut.state.focus();
		return false; 
	}
	
	if(document.TakeOut.zip.value==""){
		alert("Please enter a mailing zip so we can mail out your tickets.");
		document.TakeOut.zip.focus();
		return false; 
	}
	
	if(document.TakeOut.NumberOfOrders.value==""){
		alert("Please enter the number of meals you are ordering.");
		document.TakeOut.NumberOfOrders.focus();
		return false;
	}
	
	if(document.TakeOut.PickUpTime.selectedIndex==0){
		alert("Please choose your pick up time.");
		document.TakeOut.PickUpTime.focus();
		return false;
	}
	
	if(document.TakeOut.Name_1.value==""){
		alert("Please enter the an individuals name for the order.");
		document.TakeOut.Name_1.focus();
		return false;
	}
}