function chkformular()

{
	var httpform = document.forms[0];



	if (httpform.vorname.value == "")
		{
			alert ("Bitte Vornamen eingeben!");
			httpform.vorname.focus();
			return false;
		}

	if (httpform.name.value == "")
		{
			alert ("Bitte Namen eingeben!");
			httpform.name.focus();
			return false;
		}


	if (httpform.strasse.value == "")
		{
			alert ("Bitte Straße eingeben!");
			httpform.strasse.focus();
			return false;
		}
	if (httpform.plz.value == "")
		{
			alert ("Bitte Postleitzahl eingeben!");
			httpform.plz.focus();
			return false;
		}
	if (httpform.ort.value == "")
		{
			alert ("Bitte Ort eingeben!");
			httpform.ort.focus();
			return false;
		}


}

