
var strBrowser = navigator.appName;
var strPlatform = navigator.platform;

// Style sheets for Windows
if (strPlatform == "Win32") {
	if (strBrowser == "Microsoft Internet Explorer") {
		document.write("<link rel=stylesheet href=\"http://www.tradestreetrealty.com/css/nav_scrollbar.css\">");
	} else {
		document.write("<link rel=stylesheet href=\"http://www.tradestreetrealty.com/css/nav_scrollbar.css\">");
	}

// Style sheets for OS2
} else if (strPlatform == "OS/2") {
		document.write("<link rel=stylesheet href=\"http://www.tradestreetrealty.com/css/nav_scrollbar.css\">");

// All other platforms (Mac)
} else {
		document.write("<link rel=stylesheet href=\"http://www.tradestreetrealty.com/css/nav_scrollbar.css\">");
}
