
function chkFormular()
{
 i=0;
 if(document.KONTAKT.uname.value == "")
  {
   document.KONTAKT.uname.style.backgroundColor = "#FF9999";
   document.KONTAKT.uname.focus();
   i++;
  }else{
   document.KONTAKT.uname.style.backgroundColor = "#ddd4cd";
  }
 if(document.KONTAKT.tel.value == "")
  {
   document.KONTAKT.tel.style.backgroundColor = "#FF9999";
   document.KONTAKT.tel.focus();
   i++;
  }else{
   document.KONTAKT.tel.style.backgroundColor = "#ddd4cd";
  }
 if(document.KONTAKT.nachricht.value == "")
  {
   document.KONTAKT.nachricht.style.backgroundColor = "#FF9999";
   document.KONTAKT.nachricht.focus();
   i++;
  }else{
   document.KONTAKT.nachricht.style.backgroundColor = "#ddd4cd";
  }
  if(i!=0){
	  return false;
  }else{
	  return true;
  }
}
