// Get a base CSS name based on the browser.
var css = "/css/netscape.css";
var sVer = navigator.appVersion;
sName = navigator.appVersion;
if (navigator.appName == "Microsoft Internet Explorer") {
	sVer = sVer.substring(0, sVer.indexOf("."));
	if (sVer >= 4) {
	    if (sName.indexOf("Windows") != (-1)) css =  "/css/daytrader.css";
	    if (sName.indexOf("Macintosh") != (-1)) css = "/css/mac.css";
	}
}
else {
	if (sName.indexOf("Macintosh") != (-1)) {
	    css = "/css/macnet.css";
	}
}
// The CSS is in the same directory as the script.
document.writeln('<LINK REL="stylesheet" HREF="' + css + '">');

