
<!-- Hinweis: Show und Hide-Effekt für die Ebenen -->    
var referenz;
function show(zahl)
{
referenz="ebene"+zahl;     
    if (document.all && !document.getElementById)            // IE 4
      {
      document.all[referenz].style.visibility="visible";
      }
 if (document.layers)                                                                 // NC 4.x
      {
      document.layers[referenz].visibility="visible";
       }
   if (document.getElementById)                                            // IE 5.x und NC 6
      { 
       document.getElementById(referenz).style.visibility="visible";
      }
}
function hide(zahl)
{
referenz="ebene"+zahl;
    if (document.all && !document.getElementById)            // IE 4
      {
        document.all[referenz].style.visibility="hidden";
       }
   if (document.layers)                                                              // NC 4.x
     {
      document.layers[referenz].visibility="hidden";
      }
   if (document.getElementById)                                             // IE 5.x und NC 6
     {
      document.getElementById(referenz).style.visibility="hidden";
      }
}
  var dc="Logo";    
  
  
  
<!-- Hinweis: oeffnet alle Fenster ohne scrollbalken -->
 
var fenst;
function fenstneu(link,titel,wi,he,l,t)
{  
if (fenst && !fenst.closed){ 
    fenst.close() ; 
  }
fenst=window.open(link, titel, "width="+wi+", height="+he+", left="+l+", top="+t+",resizable=no,scrollbars=x,toolbar=no,menubar=no");

  if (fenst != null)
  { 
  fenst.focus() 
  } 
}  

<!-- Hinweis: oeffnet alle Fenster mit scrollbalken -->

function fenstscrol(link,titel,wi,he,l,t)
{  
if (fenst && !fenst.closed){ 
    fenst.close() ; 
  }
fenst=window.open(link, titel, "width="+wi+", height="+he+", left="+l+", top="+t+",resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes");

  if (fenst != null)
  { 
  fenst.focus() 
  } 
}  

<!--HTML-Code: <a href="link.html" onClick="fenstneu('link.html','name','600','500','300','170'); return false;">  -->  
