<!--
var ns=document&&!document.getElementById; 
var ie=document.all;
var ub=document.getElementById;

// Farbe und den karo wechseln in der navigation

function NaviWechsel (zusatz,zustand)
{
 var PlatzvTd="td_platzv_"+zusatz;
 var Bild="bild_"+zusatz;
 var BildTd="td_bild_"+zusatz;
 var LinkTd="td_link_"+zusatz;
 var PlatzhTd="td_platzh_"+zusatz;
 
 var Bildpfad="http://www.hiesel.com/images/sitedesign/";
 
 if(zustand=="over")
 {
  var Bildname="bullet_aktiv.gif";
  if(ie)
  {
   document.all(PlatzvTd).style.backgroundColor="#FFFFFF";
   window.document.images[Bild].src = Bildpfad+Bildname;
   document.all(BildTd).style.backgroundColor="#FFFFFF";
   document.all(LinkTd).style.backgroundColor="#FFFFFF";
   document.all(PlatzhTd).style.backgroundColor="#FFFFFF";
  }
  if(ns){  }
  if(ub)
  {
   document.getElementById(PlatzvTd).style.backgroundColor="#FFFFFF";
   window.document.images[Bild].src = Bildpfad+Bildname;
   document.getElementById(BildTd).style.backgroundColor="#FFFFFF";
   document.getElementById(LinkTd).style.backgroundColor="#FFFFFF";
   document.getElementById(PlatzhTd).style.backgroundColor="#FFFFFF";
  }
 }
 
 if(zustand=="out")
 {
  var Bildname="bullet_normal.gif";
  if(ie)
  {
   document.all(PlatzvTd).style.backgroundColor="#C8D4E4";
   window.document.images[Bild].src = Bildpfad+Bildname; 
   document.all(BildTd).style.backgroundColor="#C8D4E4";
   document.all(LinkTd).style.backgroundColor="#C8D4E4";
   document.all(PlatzhTd).style.backgroundColor="#C8D4E4";
  }
  if(ns){  }
  if(ub)
  {
   document.getElementById(PlatzvTd).style.backgroundColor="#C8D4E4";
   window.document.images[Bild].src = Bildpfad+Bildname; 
   document.getElementById(BildTd).style.backgroundColor="#C8D4E4";
   document.getElementById(LinkTd).style.backgroundColor="#C8D4E4";
   document.getElementById(PlatzhTd).style.backgroundColor="#C8D4E4";
  }
 }
}

//formular checken
function chkFormular(welches)
{
  if(document.Formular.f_Ansprechpartner.value == "")  { alert("Bitte füllen Sie das Feld Ansprechpartner aus."); document.Formular.f_Ansprechpartner.focus(); return false; }
  if(welches=="rue"){if(document.Formular.f_Telefon.value == "") { alert('Wir brauchen Ihre Telefonnummer um Sie zurückrufen zu können!'); document.Formular.f_Telefon.focus(); return false;}}
  else if(welches=="ema"){if(document.Formular.f_Email.value == "") { alert('Bitte tragen Sie Ihre Email Adresse ein.'); document.Formular.f_Email.focus(); return false;}}
}
//-->
