<!--
//Verhindert das Anzeigen des alt-Attributs (Bug in IE und NS4)
function fixtooltips(){
 for (bildindex=0; bildindex<document.images.length; bildindex++)
  // Wenn alt-Attribut nicht leer und kein title-Attribut gesetzt ist
  if (document.images[bildindex].alt.length>0 && !document.images[bildindex].title) document.images[bildindex].title="";
}
//onload-Eventhandler registrieren, wenn IE oder NS4
if (document.all && navigator.userAgent.indexOf("Opera")==-1 || document.layers){
 onload=fixtooltips;
}
function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}
//-->
