// Get a base CSS name based on the browser.
dostyle();

function dostyle() {
var css = "/css/farnlns.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/farnl.css";
	}
}
// The CSS is in the same directory as the script.
document.writeln('<LINK REL="stylesheet" HREF="' + css + '">');
}
