var os = navigator.platform;
var brName = navigator.appName.charAt(0);
var brVer = navigator.appVersion.charAt(0);
var brType ="";

if(os == "Win32"){
	if((brName == "N") && (brVer >= 4)){
		brType = "css/WNCindex";
			} else if((brName == "M") && (brVer >= 4)) {
		brType = "css/WIEindex";
	}
} else if(os == "MacPPC"){
	if((brName == "N") && (brVer >= 4)){
		brType = "css/WNCindex";
			} else if((brName == "M") && (brVer >= 4)) {
		brType = "css/WIEindex";
			} else if((brName == "M") && (brVer >= 5)) {
		brType = "css/WIEindex";
	}
}

if(brType != ""){
	document.write('<' + 'LINK REL="StyleSheet" TYPE="text/css" HREF="' + brType + '.css"' + '>');
}
