
	// Formular Check Anmeldung zur Pressekonferenz

    2* function chkAnmeldung()
  {
		if(document.Formular.messe_ort.value == "")
    {
     alert("Bitte geben Sie dem Ort an!");
     document.Formular.messe_ort.focus();
     return false;
    }  
		if(document.Formular.name_messe.value == "")
    {
     alert("Bitte geben Sie den Namen der Messe an!");
     document.Formular.name_messe.focus();
     return false;
    }	
		if(document.Formular.datum.value == "")
	{
	alert("Bitte den Tag an!");
	document.Formular.datum.focus();
	return false;
	}
	var chkZ = 1;
	for(i=0;i<document.Formular.datum.value.length;++i)
	if(document.Formular.datum.value.charAt(i) < "0"
	|| document.Formular.datum.value.charAt(i) > "9")
		chkZ = -1;
				if(chkZ == -1)
		{
	alert("Dieses Datum ist ungültig!");
	document.Formular.datum.focus();
	return false;
	}
		if(document.Formular.datum2.value == "")
	{
	alert("Bitte geben Sie den Monat ein!");
	document.Formular.datum2.focus();
	return false;
	}
	var chkZ = 1;
	for(i=0;i<document.Formular.datum2.value.length;++i)
	if(document.Formular.datum2.value.charAt(i) < "0"
	|| document.Formular.datum2.value.charAt(i) > "9")
		chkZ = -1;
				if(chkZ == -1)
		{
	alert("Dieses Datum ist ungültig!");
	document.Formular.datum2.focus();
	return false;
	}
		if(document.Formular.datum3.value == "")
	{
	alert("Bitte geben Sie das Jahr ein!");
	document.Formular.datum3.focus();
	return false;
	}
	var chkZ = 1;
	for(i=0;i<document.Formular.datum3.value.length;++i)
	if(document.Formular.datum3.value.charAt(i) < "0"
	|| document.Formular.datum3.value.charAt(i) > "9")
		chkZ = -1;
				if(chkZ == -1)
		{
	alert("Dieses Datum ist ungültig!");
	document.Formular.datum3.focus();
	return false;
	}
  		 if(document.Formular.nachname.value == "")
    {
     alert("Bitte geben Sie Ihren Namen ein!");
     document.Formular.nachname.focus();
     return false;
    }
  			 if(document.Formular.vorname.value == "")
    {
     alert("Bitte geben Sie Ihren Vornamen ein!");
     document.Formular.vorname.focus();
     return false;
    }	
	  		 if(document.Formular.medium.value == "")
    {
     alert("Bitte tragen Sie Ihr Medium ein!");
     document.Formular.medium.focus();
     return false;
    }	  
			if(document.Formular.strasse.value == "")
    {
     alert("Bitte geben Sie Ihre Strasse an!");
     document.Formular.strasse.focus();
     return false;
    }
			if(document.Formular.plz.value == "")
    {
     alert("Bitte geben Sie Ihre PLZ an!");
     document.Formular.plz.focus();
     return false;
    }
	var chkZ = 1;
	for(i=0;i<document.Formular.plz.value.length;++i)
	if(document.Formular.plz.value.charAt(i) < "0"
	|| document.Formular.plz.value.charAt(i) > "9")
		chkZ = -1;
				if(chkZ == -1)
		{
	alert("Dieses Postleitzahl ist ungültig!");
	document.Formular.plz.focus();
	return false;
	}	
			if(document.Formular.ort.value == "")
    {
     alert("Bitte geben Sie Ihren Ort an!");
     document.Formular.ort.focus();
     return false;
    }
			if(document.Formular.telefon.value == "")
    {
     alert("Bitte geben Sie Ihre Telefonnummer an!");
     document.Formular.telefon.focus();
     return false;
    }
		var chkZ = 1;
	for(i=0;i<document.Formular.telefon.value.length;++i)
	if(document.Formular.telefon.value.charAt(i) < "0"
	|| document.Formular.telefon.value.charAt(i) > "9")
		chkZ = -1;
				if(chkZ == -1)
		{
	alert("Dieses Telefonnummer ist ungültig!");
	document.Formular.telefon.focus();
	return false;
	}
			if(document.Formular.fax.value == "")
    {
     alert("Bitte geben Sie Ihre Faxnummer an!");
     document.Formular.fax.focus();
     return false;
	}
	var chkZ = 1;
	for(i=0;i<document.Formular.fax.value.length;++i)
	if(document.Formular.fax.value.charAt(i) < "0"
	|| document.Formular.fax.value.charAt(i) > "9")
		chkZ = -1;
				if(chkZ == -1)
		{
	alert("Diese Faxnummer ist ungültig!");
	document.Formular.fax.focus();
	return false;
	}
			if(document.Formular.email.value == "")
	{
	alert("Bitte geben Sie Ihre Email-Adresse ein !");
	document.Formular.email.focus();
	return false;
	}
			if(document.Formular.email.value.indexOf('@') == -1)
	{
	alert("Dies ist keine gültige Email-Adresse !");
	document.Formular.email.focus();
	return false;
	}
  }
  // Ende Formular Check
  
  
// Formular Check Info Broschüre bestellen
  
     2* function chkFormular()
  {  		
  			 if(document.Formular.name.value == "")
    {
     alert("Bitte geben Sie Ihren Namen ein!");
     document.Formular.name.focus();
     return false;
    }
  			 if(document.Formular.vorname.value == "")
    {
     alert("Bitte geben Sie Ihren Vornamen ein!");
     document.Formular.vorname.focus();
     return false;
    }		  
			if(document.Formular.strasse.value == "")
    {
     alert("Bitte geben Sie Ihre Strasse an!");
     document.Formular.strasse.focus();
     return false;
    }
			if(document.Formular.plz.value == "")
    {
     alert("Bitte geben Sie Ihre PLZ an!");
     document.Formular.plz.focus();
     return false;
    }	
			if(document.Formular.ort.value == "")
    {
     alert("Bitte geben Sie Ihren Ort an!");
     document.Formular.ort.focus();
     return false;
    }
  			if(document.Formular.email.value == "")
	{
	alert("Bitte geben Sie Ihre Email-Adresse ein !");
	document.Formular.email.focus();
	return false;
	}
			if(document.Formular.email.value.indexOf('@') == -1)
	{
	alert("Dies ist keine gültige Email-Adresse !");
	document.Formular.email.focus();
	return false;
	}
  }
  // Ende Formular Check
  
  
	
//  Fenster öffnen
<!--
function NeuesFenster(url, width, height) {
	var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no,status=yes' );
}
//-->

<!-- Begin Dropdown Menu
function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}
// End -->


