// CSS

  if (document.layers) {
    // CSS  für Netscape 4
    document.write('<link rel=stylesheet type="text/css" href="/vorlagen/ns.css">')
  }
    // CSS für andere Browser
    else {
      document.write('<link rel=stylesheet type="text/css" href="/vorlagen/ie.css">')
    }

// Favicon

// document.write('<link rel="shortcut icon" href="/images/favicon.ico">')


// Funktionen

function PopUp(loc,h,b,sc)
  {
      PopUpWin = 
      window.open(loc, "popup", "width="+h+",height="+b+",scrollbars="+sc);
      PopUpWin.focus();
  }