function Testeingabe(theForm)
{
I = 0;
String ='';

if (theForm.Name.value=='') 
  { theForm.Name.style.backgroundColor= '#8db487';I = 1;}

if (theForm.Email.value=='') 
  { theForm.Email.style.backgroundColor= '#8db487';I = 1;}

if (theForm.Nachricht.value=='') 
  { theForm.Nachricht.style.backgroundColor= '#8db487';I = 1;}

if (I == 1)
{
 alert('Bitte fülle alle farblich markierten Felder aus!\nPlease fill all colored fields!'+String);  
    return (false);
  }

if (I == 0)
{
  return (true);
}
}
