<!--
function pruefen () {


         if(document.contact.email.value.indexOf ("@") == -1 ||
         document.contact.email.value.indexOf (".") == -1)
         {
         alert("\nBitte prüfen sie Ihre Email-Adresse!") ;
         document.contact.email.select ();
         document.contact.email.focus ();
         return false;
         }

         if(document.contact.Firma1.value == "" )
         {
         alert("\nBitte geben Sie Ihren Firmennamen an!");
         document.contact.Firma1.select ();
         document.contact.Firma1.focus ();
         return false;
         //   }    else {
         // var f1_name = document.contact.Firma1.value;
         // var f2_name =  document.contact.Firma2.value;
         // var g_name =  "Fa: " + f1_name + " " + f2_name;
         // document.contact.realname.value = g_name;
         }
           if(document.contact.Branche.value == "0")
         {
         alert("\nBitte wählen Sie eine Branche aus!");
  //       document.contact.Branche.select ();
         document.contact.Branche.focus ();
         return false;
         }

          if(document.contact.Ansprechpartner.value == "")
         {
         alert("\nBitte geben Sie Ihren Namen an!");
         document.contact.Ansprechpartner.select ();
         document.contact.Ansprechpartner.focus ();
         return false;
         }


          if(document.contact.Strasse.value == "")
         {
         alert("\nBitte geben Sie die Strasse an!");
         document.contact.Strasse.select ();
         document.contact.Strasse.focus ();
         return false;
         }

         var auswahlL = document.contact.Land.options.selectedIndex;
          var _123 = document.contact.PLZ.value;
          if(auswahlL == '0'   &&  _123.length != 4){

                alert("\nBitte geben Sie die 4-stellige PLZ ein!");
                document.contact.PLZ.select ();
                document.contact.PLZ.focus ();
                return false;
                }
          if(auswahlL == '1'   &&  _123.length != 5){

                alert("\nBitte geben Sie die 5-stellige PLZ ein!");
                document.contact.PLZ.select ();
                document.contact.PLZ.focus ();
                return false;
                }
          if(auswahlL == '2'   &&  _123.length != 4){

                alert("\nBitte geben Sie die 4-stellige PLZ ein!");
                document.contact.PLZ.select ();
                document.contact.PLZ.focus ();
                return false;
                }


          if(document.contact.Ort.value == "")
         {
         alert("\nBitte geben Sie Ihren Firmensitz an!");
         document.contact.Ort.select ();
         document.contact.Ort.focus ();
         return false;
         }


          if( document.contact.Telefon.value == "")
         {
         alert("\nBitte geben Sie IhreTelefon-Nr. an!");
         document.contact.Telefon.select ();
         document.contact.Telefon.focus ();
         return false;
         }


}
//  -->
