
      <!--//
	  
 var bName = navigator.appName;
 var bcode=navigator.appCodeName; 
 var bVer=parseInt(navigator.appVersion);
var Zeile, CSSFile;

      if(bName == "Microsoft Internet Explorer" && bVer >=4)
      {
      CSSFile="../shared/style_ie.css";
      }
/* Netscape 6 */
     if(bName == "Netscape" && bVer >=5)
      {
      CSSFile="../shared/style_ie.css";
      }
	  /* Netscape 4.x */
 if(bName == "Netscape" && bVer >=4 && bVer <5)
 {
      CSSFile="../shared/style_n4.css";
      }
 
      Zeile="<LINK REL=\"STYLESHEET\" HREF=\""+CSSFile+"\" TYPE=\"text/css\">";
      document.write(Zeile);

      //-->
     
