function contact_check ( form )
{
	if (form.your_name.value == "")
	{
    alert( "Please fill up the \"Your name\" field, with a minimum of 3 characters." );
    form.your_name.focus();
    return false ;
  }

	if (form.country.value == "")
	{
    alert( "Please select a country for the \"Your home country\" field." );
    form.country.focus();
    return false ;
  }

	if (form.email.value == "")
	{
    alert( "Please fill up the \"Email\" field" );
    form.email.focus();
    return false ;
  }

	if (form.resort_or_hotel_name.value == "")
	{
    alert( "Please select from \"Name of hotel or resort\" field" );
    form.resort_or_hotel_name.focus();
    return false ;
  }

	if (form.desired_location.value == "")
	{
    alert( "Please fill up the \"Desired location\" field" );
    form.desired_location.focus();
    return false ;
  }

	if (form.travel_dates.value == "")
	{
    alert( "Please fill up the \"Travel dates\" field" );
    form.travel_dates.focus();
    return false ;
  }

	if (form.number_adults_kids.value == "")
	{
    alert( "Please fill up the \"Number of adults and kids with kid's birthdays\" field" );
    form.number_adults_kids.focus();
    return false ;
  }

	if (form.room_type.value == "")
	{
    alert( "Please fill up the \"Room type\" field" );
    form.room_type.focus();
    return false ;
  }
	
  return true;
}
