function check ()
{

	var status=true;

					
	var Name=document.form1.Name.value;
	if (Name == "")
	{
	alert ("Name? Für die Erstellung eines Kostenvoranschlages ist diese Information unbedingt notwendig.");
	status=false;
	document.form1.Name.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Vorname=document.form1.Vorname.value;
	if (Vorname == "")
	{
	alert ("Vorname? Für die Erstellung eines Kostenvoranschlages ist diese Information unbedingt notwendig.");
	status=false;
	document.form1.Vorname.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}

	var Adresse=document.form1.Adresse.value;
	if (Adresse == "")
	{
	alert ("Adresse? Für die Erstellung eines Kostenvoranschlages ist diese Information unbedingt notwendig.");
	status=false;
	document.form1.Adresse.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Land=document.form1.Land.value;
	if (Land == "")
	{
	alert ("Land? Für die Erstellung eines Kostenvoranschlages ist diese Information unbedingt notwendig.");
	status=false;
	document.form1.Land.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Telefon=document.form1.Telefon.value;
	if (Telefon == "")
	{
	alert ("Telefon? Für die Erstellung eines Kostenvoranschlages ist diese Information unbedingt notwendig.");
	status=false;
	document.form1.Telefon.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Aufenthaltsdauer=document.form1.Aufenthaltsdauer.value;
	if (Aufenthaltsdauer == "")
	{
	alert ("Aufenthaltsdauer? Für die Erstellung eines Kostenvoranschlages ist diese Information unbedingt notwendig.");
	status=false;
	document.form1.Aufenthaltsdauer.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Jugendliche=document.form1.Jugendliche.value;
	if (Jugendliche == "")
	{
	alert ("Jungendliche? Für die Erstellung eines Kostenvoranschlages ist diese Information unbedingt notwendig.");
	status=false;
	document.form1.Jugendliche.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	var Erwachsene=document.form1.Erwachsene.value;
	if (Erwachsene == "")
	{
	alert ("Erwachsene? Für die Erstellung eines Kostenvoranschlages ist diese Information unbedingt notwendig.");
	status=false;
	document.form1.Erwachsene.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}
	
	
	var Kinder=document.form1.Kinder.value;
	if (Kinder == "")
	{
	alert ("Kinder? Für die Erstellung eines Kostenvoranschlages ist diese Information unbedingt notwendig.");
	status=false;
	document.form1.Kinder.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}


	var Anzahl_Zimmer=document.form1.Anzahl_Zimmer.value;
	if (Anzahl_Zimmer == "")
	{
	alert ("Anzahl der Zimmer? Für die Erstellung eines Kostenvoranschlages ist diese Information unbedingt notwendig.");
	status=false;
	document.form1.Anzahl_Zimmer.focus ();
	//DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
	return false;
	}



	var E_Mail=document.form1.E_Mail.value;
	if (E_Mail == "") 
	{
	alert ("Sorry, bitte geben Sie Ihre email-Adresse ein !");
	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 ("ACHTUNG: Ihre email-Adresse ist nicht korrekt !");
		 status=false;
		 document.form1.E_Mail.focus ();
		 //DIESE ANWEISUNG SETZT DEN CURSOR WIEDER AUF DAS FORMULARFELD
               return false;
		}

	}


}
// -->