// this script writes out the css, Netscrape 4 needs a different one because it was the worst browser ever

var a = navigator.appName;
var b = parseInt(navigator.appVersion);

if  (a == "Netscape" && b <= 4) document.write('<link rel="stylesheet" href="external/style_ns.css" type="text/css">')
else document.write('<link rel="stylesheet" href="external/style_ie.css" type="text/css">')
