function feld_leer(Feld){
    if (Feld.value == '')
     return false;
    else
     return true;
   } 

function email_falsch(){
   if (document.Form.Email.value.indexOf('@') == '-1' 
     || document.Form.Email.value.indexOf('@') == '0' 
     || document.Form.Email.value.indexOf('.') == '-1')
     return false;
    else
     return true;
   }

function Check_Form(Form){
    Fehler = false;
    Nachricht = 'Please check following particulars:\n'; 
    
    if(!feld_leer(Form.Firma)){
      Nachricht += 
      '- Tell us the Company name\n';
      Fehler = true;
      }
    if (!feld_leer(Form.Vorname)){
       Nachricht += 
       '- Tell us the last name\n';
       Fehler = true;
      }  
       if (!feld_leer(Form.Name)){
       Nachricht += 
       '- Tell us the last name\n';
       Fehler = true;
      }    

      if (!feld_leer(Form.Strasse)){
	   Nachricht +=
	   '- Tell us the postal address\n';
	   Fehler = true;
	   }
	   
       if (!feld_leer(Form.PLZ)) {
	   Nachricht +=
	   '- Tell us the area code\n';
	   Fehler = true;
	   }
	   
	   if (!feld_leer(Form.Ort)) {
	   Nachricht +=
	   '- Tell us the city\n';
	   Fehler = true;
	   }
       
	   if (!feld_leer(Form.Land)) {
	   Nachricht +=
	   '- Tell us the country\n';
	   Fehler = true;
	   }
	   
	   if (!feld_leer(Form.Email)) {
	   Nachricht +=
	   '- Tell us the Email address\n';
	   Fehler = true;
	   }
	   
     if (feld_leer(Form.Email)) {
     if (!email_falsch()){
      Nachricht += 
      '- Your Email address is wrong\n';
      Fehler = true;
      }}
     
    
    if (Fehler) {
    alert(Nachricht);
    return false;
    }   
   else
    return true;
   
}