function validateScheduleRequestForm(form) {

    if(form.organization.value.length < 2) {
	alert("Please tell us what organization you represent.");
	return false;
    }
    
    if(form.coordinator.value.length < 2) {
	alert("Please tell us who will be coordinating the run.");
	return false;
    }
    
    if(form.email.value.length < 2) {
	alert("Please give us the coordinator's email address.");
	return false;
    }

    
    if(form.phone.value.length < 7) {
	alert("Please tell us how we can reach the coordinator by phone.");
	return false;
    }

    /*
    if(form.assistant.value.length < 2) {
	alert("Please tell us who will be assisting on the run.");
	return false;
    }
    
    if(form.assistant_email.value.length < 2) {
	alert("Please provide the assistant's email address.");
	return false;
    }
    
    if(form.assistant_phone.value.length < 7) {
	alert("Please tell us how we can reach the assistant by phone.");
	return false;
    }
    */
    
    if(form.run1_date1.value.length < 2) {
	alert("Please provide a valid first choice date");
	return false;
    }

    if(form.run1_date2.value.length < 2) {
	alert("Please provide a valid second choice date.");
	return false;
    }
    
    if(form.run1_van.value.length < 2) {
	alert("Please tell us which vehicle you'd like to use for the run.");
	return false;
}


  return true;
}
