function check ()
{

	var status=true;

					
	var Name=document.form1.Name.value;
	if (Name == "")
	{
	alert ("Name? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.Name.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var First_name=document.form1.First_name.value;
	if (First_name == "")
	{
	alert ("First name? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.First_name.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}

	var Address=document.form1.Address.value;
	if (Address == "")
	{
	alert ("Address? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.Address.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Country=document.form1.Country.value;
	if (Country == "")
	{
	alert ("Country? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.Country.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Telephone=document.form1.Telephone.value;
	if (Telephone == "")
	{
	alert ("Telephone? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.Telephone.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Dates_of_travel=document.form1.Dates_of_travel.value;
	if (Dates_of_travel == "")
	{
	alert ("Dates of travel? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.Dates_of_travel.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Adults=document.form1.Adults.value;
	if (Adults == "")
	{
	alert ("Adults? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.Adults.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Young_adults_12_to_18_years=document.form1.Young_adults_12_to_18_years.value;
	if (Young_adults_12_to_18_years == "")
	{
	alert ("Young adults 12 to 18-years? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.Young_adults_12_to_18_years.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}


	var Children_less_than_12_years=document.form1.Children_less_than_12_years.value;
	if (Children_less_than_12_years == "")
	{
	alert ("Children less than 12 years? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.Children_less_than_12_years.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	
	var Number_of_bedrooms_needed=document.form1.Number_of_bedrooms_needed.value;
	if (Number_of_bedrooms_needed == "")
	{
	alert ("Number of bedrooms needed? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.Number_of_bedrooms_needed.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}



	var E_Mail=document.form1.E_Mail.value;
	if (E_Mail == "") 
	{
	alert ("Email-address? To establish a quote, this infomation is absolutely necessary.");
	status=false;
	document.form1.E_Mail.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
       return false;
	} 	 else 
		{
		 kk=E_Mail.indexOf ("@");
		 if (kk <= 0 || E_Mail.indexOf (".", kk) < 0) {
		 alert ("Attention: Your email address is not correct");
		 status=false;
		 document.form1.E_Mail.focus ();
		 //DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
               return false;
		}

	}


}
// -->