

/*globale Variablen Standardstyle fuer IE 5.5 auf PC*/

var fsize = 11; 

var fsizesmall = 10; 

var fmicro = 8;

var fsizehl = 13; 

var fsizeshl = 11; 

var fsizeahl = 12; 

var os = "PC";

var browser = "MSIE";



/*Betriebssystem ermitteln*/

if (navigator.appVersion.lastIndexOf("Macintosh") != -1) {

  os = "MAC";

  };

  

/*Browser ermitteln*/

if (navigator.appName == "Netscape") {

  browser="NS";

  };



/*Style anpassen*/

if (browser == "NS") {

  fsize = 11; 

  fsizesmall = 10; 

  fsizehl = 14; 

  fsizeshl = 12; 

  fsizeahl = 13; 

  };



/*Stylesheet erstellen*/

document.write('<STYLE type="text/css"><!--');





document.write('body{ background-repeat:no-repeat;}');

document.write('td, a, .normal { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: '+fsize+' px; font-style: normal; font-weight: normal; color: #000000; }');

document.write('.black{font-family: Verdana, Arial, Helvetica, sans-serif; font-size: '+fsize+'px; font-style: normal; font-weight: normal; color: #000000; }');

document.write('li{font-weight: bold; color: #910028; }');

document.write('.noul{text-decoration: none;}');

document.write('.courier, td.courier, a {	font-size: '+fsize+'px; font-style: normal; font-weight: normal; color: #000000; font-family : \'Courier New\', Courier, monospace;}');

document.write('//--></STYLE>');




