RFP = {
  // validates the full RFP form
  validateFull:function(frm, today) {
    if (frm.ArrivalDate.value >= frm.DepartureDate.value) {
      alert('Please enter an Arrival Date before the Departure Date.');
      return false; 
    }
    
 
    
    if (frm.ArrivalDate.value <= today) {
      alert('Please enter an Arrival Date after today\'s date.');
      return false;
    }
    
        
    return checkRequiredFields(frm);
    
  },
  
  validateExtra:function() {
    return true;
  }
}
