function LANDQUOTE(theForm)
{
  if (theForm.rec.value == "")
  	{alert("Please select an office to receive this quote.");
    theForm.rec.focus();
    return (false);}


   if (theForm.DeptMonth.value == "")
  	{alert("Please select a departure month.");
    theForm.DeptMonth.focus();
    return (false);}    
  if (theForm.DeptDay.value == "")
  	{alert("Please select a departure day.");
    theForm.DeptDay.focus();
    return (false);}    
  if (theForm.DeptYear.value == "")
  	{alert("Please select a departure year.");
    theForm.DeptYear.focus();
    return (false);}    
  if (theForm.Nights.value == "")
  	{alert("Please select the number of nights.");
    theForm.Nights.focus();
    return (false);}  
  if (theForm.Destination.value == "")
  	{alert("Please select an option for Island, City or Port.");
    theForm.Destination.focus();
    return (false);}  
  if (theForm.Vendor.value == "")
  	{alert("Please select a resort of interest.");
    theForm.Vendor.focus();
    return (false);}  
  if (theForm.Rooms.value == "")
  	{alert("Please select the number of rooms.");
    theForm.Rooms.focus();
    return (false);}    
  if (theForm.VacationType.value == "")
  	{alert("Please select the type of service.");
    theForm.VacationType.focus();
    return (false);}    
  if (theForm.AccomType.value == "")
  	{alert("Please select the type of accommodations.");
    theForm.AccomType.focus();
    return (false);}    

  if (theForm.Timeframe.value == "")
  	{alert("Please select the Timeframe you wish to have your quote by.");
    theForm.Timeframe.focus();
    return (false);}    


  if (theForm.Adults.value == "")
  	{alert("Please tell us the number of Adults.");
    theForm.Adults.focus();
    return (false);}    

  if (theForm.Children.value == "")
  	{alert("Please tell us the number of Children.");
    theForm.Children.focus();
    return (false);}




    
  if (theForm.DepartCity.value == "")
  	{alert("Please tell us where you will be departing from.");
    theForm.DepartCity.focus();
    return (false);}    

  if (theForm.FullName.value == "")
  	{alert("Please provide your Passport First name.");
    theForm.FullName.focus();
    return (false);}
    
  if (theForm.LastName.value == "")
  	{alert("Please provide your Passport Last name.");
    theForm.LastName.focus();
    return (false);}

if (theForm.Address.value == "")
  	{alert("Please provide your complete street address.");
    theForm.Address.focus();
    return (false);}    

  if (theForm.City.value == "")
  	{alert("Please provide the city where you live.");
    theForm.City.focus();
    return (false);}    

  if (theForm.State.value == "")
  	{alert("Please provide the state where you live.");
    theForm.State.focus();
    return (false);}
    
  if (theForm.Zip.value == "")
  	{alert("Please tell us your Zip/Postal Code.");
    theForm.Zip.focus();
    return (false);}    

  if (theForm.PhoneCode.value == "")
  	{alert("Please provide us with your area code.");
    theForm.PhoneCode.focus();
    return (false);}

 if (theForm.PhoneNumber.value == "")
  	{alert("Please provide us with your phone number.");
    theForm.PhoneNumber.focus();
    return (false);}

  if (theForm.Email.value == "")
  	{alert("Please enter your email address.");
    theForm.email.focus();
    return (false);}

  if (!isEmailAddr(theForm.Email.value))
  { alert("Sorry, the email address you entered is invalid!\n\ne.g.:     yourname@yourdomain.com");
    theForm.email.focus();
    return (false);}



 if (theForm.Budget.value == "")
  	{alert("Please indicate the total budget for this trip.");
    theForm.Budget.focus();
    return (false);}


 if (theForm.FlexDates.value == "")
  	{alert("Please tell us if your dates are flexible.");
    theForm.FlexDates.focus();
    return (false);}



  return (true);
}

var showme = new Object();
    showme['d1'] = 'KIDS-1';
    showme['d2'] = 'KIDS-2';
    showme['d3'] = 'KIDS-3';
    showme['d4'] = 'KIDS-4';
    showme['d5'] = 'KIDS-5';
    showme['d6'] = 'KIDS-6';
    showme['d7'] = 'KIDS-7';
    showme['d8'] = 'KIDS-8';
function display(selval) {
     for (divs in showme)
          if (showme[divs] == selval) 
               document.getElementById(divs).style.display = 'block';
          else document.getElementById(divs).style.display = 'none';
}

