styleStr = "<LINK rel='stylesheet' type='text/css' href='/css/best.css'>\n";
styleStr += "<LINK rel='stylesheet' type='text/css' href='/css/";


if (is.mac || is.win)
{
	// IE and Netscape have the same font size on a Mac
	if (is.mac)
		styleStr += "mac_best.css'>";
	// but WinIE fonts are sligthly larger than Netscape's, so use different
	else if (is.win)
	{
		if (is.ie || is.opera || is.mozilla5)
			styleStr += "pcie_best.css'>";
		else if (is.ns) 
			styleStr += "pcns_best.css'>";
	}
}
// you can use the Mac monitor font size for Unix
else
	styleStr += "mac_best.css'>";

// add NEXTLINE
styleStr += "\n";

// IMPORTANT: "hide" the CSS link in a string, not HTML, because of the Navigator Line Break Bug!
//if (is && is.js)
{
	document.write(styleStr);
//	alert(styleStr);
}
