function checkform(){		
	var re = new RegExp("[0-9]{5}");
	var warning = "";
	
	if (document.ProfileForm.name.value == ""){
		warning = warning + 'Please enter your name.\r\n';			
		}	
	if (document.ProfileForm.schooldistrictname.value == ""){
		warning = warning + 'Please enter your school districts name.\r\n';			
		}
	if (document.ProfileForm.email.value == ""){
		warning = warning + 'Please enter your email address.\r\n';			
		}
	if (document.ProfileForm.deliveryaddress.value == ""){
		warning = warning + 'Please enter an address for your sample delivery.\r\n';			
		}	
	if (document.ProfileForm.deliverycity.value == ""){
		warning = warning + 'Please enter a city for your sample delivery.\r\n';			
		}	
	if (document.ProfileForm.deliverystate.value == ""){
		warning = warning + 'Please select a state for your sample delivery.\r\n';			
		}		
	if (document.ProfileForm.deliveryzip.value == ""){
		warning = warning + 'Please enter a zipcode for your sample delivery.\r\n';			
		}	
	if (document.ProfileForm.student_breakfast.value == ""){
		warning = warning + 'Please Enter the number of students that you serve breakfast to.\r\n';			
		}	
	if (document.ProfileForm.student_lunch.value == ""){
		warning = warning + 'Please Enter the number of students that you serve lunch to.\r\n';			
		}	
	if (document.ProfileForm.student_snack.value == ""){
		warning = warning + 'Please Enter the number of students that you serve a snack to.\r\n';			
		}	
		if (warning != ""){
		alert(warning);
		return false;}
	
	return true;
}