function validate_tour()
	{
	if (document.forms.tourForm.Full_name.value == "")
		{
		alert("Please enter your name");
		document.forms.tourForm.Full_name.focus();
		return false;
		}
	var checkEmail = document.forms.tourForm.Email.value;
	if (document.forms.tourForm.Email.value == "")
		{
		alert("Please enter your Email address");
		document.forms.tourForm.Email.focus();
		return false;
		}
	if (document.forms.tourForm.Email.value.length < 6)
  {
    alert("The Email address you entered is invalid");
    document.forms.tourForm.Email.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzfSOZsozYÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ0123456789-@_-.";
  var checkStr = document.forms.tourForm.Email.value;
  var allValid = true;
  var validGroups = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Please enter only letter, digit and \"@_-.\" characters in the Email field.");
    document.forms.tourForm.Email.focus();
    return (false);
  }

 if ((checkEmail.indexOf('@') < 0) || ((checkEmail.charAt(checkEmail.length-4) != '.') && (checkEmail.charAt(checkEmail.length-3) != '.')))
{alert("You have entered an invalid email address. Please try again.");
document.forms.tourForm.Email.focus();
return false;
} 
	if (document.forms.tourForm.Confirm_email.value =="")
		{
		alert("Please confirm your Email address");
		document.forms.tourForm.Confirm_email.focus();
		return false;
		}
	if (document.forms.tourForm.Email.value != document.forms.tourForm.Confirm_email.value)
		{
		alert("Your Email addresses do not match");
		document.forms.tourForm.Email.focus();
		return false;
		}
		
	if (document.forms.tourForm.Email.value.length < 6)
  {
    alert("The Email address you entered is invalid");
    document.forms.tourForm.Email.focus();
    return (false);
  }
 if (document.forms.tourForm.Phone.value =="")
		{
		alert("Please enter your phone number");
		document.forms.tourForm.Phone.focus();
		return false;
		}
 if (document.forms.tourForm.Country_of_origin.selectedIndex < 1)
		{
		alert("Please choose your country of origin");
		document.forms.tourForm.Country_of_origin.focus();
		return false;
		}
		 if (document.forms.tourForm.Service_required.selectedIndex < 1)
		{
		alert("Please choose your Service Required");
		document.forms.tourForm.Service_required.focus();
		return false;
		}
 if (document.forms.tourForm.Number_of_adults.selectedIndex < 1)
		{
		alert("Please choose the number of adults");
		document.forms.tourForm.Number_of_adults.focus();
		return false;
		}
 if (document.forms.tourForm.Number_of_children.selectedIndex >0 && document.forms.tourForm.Childrens_ages.value == "")
		{
		alert("Please enter the childrens ages");
		document.forms.tourForm.Childrens_ages.focus();
		return false;
		}
		
	if (document.forms.tourForm.Arrive_day.selectedIndex < 1)
		{
		alert("Please select one of the \"Arrival Day\" options.");
		document.forms.tourForm.Arrive_day.focus();
		return false;
		}
		
	 if (document.forms.tourForm.Arrive_day.selectedIndex == 0)
		{
		alert("The first \"Arrival Day\" option is not a valid selection.  Please choose one of the other options.");
		document.forms.tourForm.Arrive_day.focus();
		return false;
		}	
		
	if (document.forms.tourForm.Arrive_month.selectedIndex < 1)
		{
		alert("Please select one of the \"Arrival Month\" options.");
		document.forms.tourForm.Arrive_month.focus();
		return false;
		}
		
	 if (document.forms.tourForm.Arrive_month.selectedIndex == 0)
		{
		alert("The first \"Arrival Month\" option is not a valid selection.  Please choose one of the other options.");
		document.forms.tourForm.Arrive_month.focus();
		return false;
		}	
		
	if (document.forms.tourForm.Arrive_year.selectedIndex < 1)
		{
		alert("Please select one of the \"Arrival Year\" options.");
		document.forms.tourForm.Arrive_year.focus();
		return false;
		}
		
	 if (document.forms.tourForm.Arrive_year.selectedIndex == 0)
		{
		alert("The first \"Arrival Year\" option is not a valid selection.  Please choose one of the other options.");
		document.forms.tourForm.Arrive_year.focus();
		return false;
		}	

if (document.forms.tourForm.Departure_day.selectedIndex < 1)
		{
		alert("Please select one of the \"Departure Day\" options.");
		document.forms.tourForm.Departure_day.focus();
		return false;
		}
		
	 if (document.forms.tourForm.Departure_day.selectedIndex == 0)
		{
		alert("The first \"Departure Day\" option is not a valid selection.  Please choose one of the other options.");
		document.forms.tourForm.Departure_day.focus();
		return false;
		}	
		
	if (document.forms.tourForm.Departure_month.selectedIndex < 1)
		{
		alert("Please select one of the \"Departure Month\" options.");
		document.forms.tourForm.Departure_month.focus();
		return false;
		}
		
	 if (document.forms.tourForm.Departure_month.selectedIndex == 0)
		{
		alert("The first \"Departure Month\" option is not a valid selection.  Please choose one of the other options.");
		document.forms.tourForm.Departure_month.focus();
		return false;
		}	
		
	if (document.forms.tourForm.Departure_year.selectedIndex < 1)
		{
		alert("Please select one of the \"Departure Year\" options.");
		document.forms.tourForm.Departure_year.focus();
		return false;
		}
		
	 if (document.forms.tourForm.Departure_year.selectedIndex == 0)
		{
		alert("The first \"Departure Year\" option is not a valid selection.  Please choose one of the other options.");
		document.forms.tourForm.Departure_year.focus();
		return false;
		}	
		
		
if (document.forms.tourForm.SpamCheck.value == "" || document.forms.tourForm.SpamCheck.value == "Red Number")
		{
		alert("Please enter the red number");
		document.forms.tourForm.SpamCheck.focus();
		return false;
		}

	
	}

