b_netscape      = navigator.appName.indexOf('Netscape') != -1 ;
b_version       = parseFloat(navigator.appVersion);
platformMac = navigator.appVersion.lastIndexOf('Macintosh') != -1;
if (b_version >= 4.0) {
	if (platformMac) {
		document.write('<link rel="stylesheet" type="text/css" href="css/mac.css">');
	} else if (b_netscape) {
		document.write('<link rel="stylesheet" type="text/css" href="css/win_nn.css">')
	} else {
		document.write('<link rel="stylesheet" type="text/css" href="css/win_ie.css">')
	}
}

