<!--

function loeschen(urlWert,status){
var urlWert;
var status;
 
Check = confirm("Wollen Sie diesen Datensatz wirklich löschen?");
  if(Check == true){
  window.location.href = urlWert+status;
  }
}

function pruefen() {
    var f = document.Formular;
    if( null == f.Name.value || "" == f.Name.value )
      { alert( "Bitte geben Sie Ihren Namen!" );
        return false; }
		if( null == f.Anschrift.value || "" == f.Anschrift.value )
      { alert( "Bitte geben Sie Ihre Anschrift ein!" );
        return false; }
		if( null == f.Telefon.value || "" == f.Telefon.value )
      { alert( "Bitte geben Sie Ihre Telefonnummer ein!" );
        return false; }
    return true;
  }
  
 sfHover = function() {
    var sfEls = document.getElementById("navi").getElementsByTagName("LI");
    for (var i=0; i<sfEls.length; i++) {
        sfEls[i].onmouseover=function() {
            this.className+=" sfhover";
        }
        sfEls[i].onmouseout=function() {
            this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
        }
    }
}

 sfHover2 = function() {
    var sfEls = document.getElementById("navi2").getElementsByTagName("LI");
    for (var i=0; i<sfEls.length; i++) {
        sfEls[i].onmouseover=function() {
            this.className+=" sfhover";
        }
        sfEls[i].onmouseout=function() {
            this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
        }
    }
}



if (window.attachEvent) window.attachEvent("onload", sfHover);
if (window.attachEvent) window.attachEvent("onload", sfHover2);
  
//-->