//
// Browser Detection - determine which style sheet to use.
//
var isMac   = navigator.appVersion.indexOf("Mac") != -1;
var NS4     = document.layers;
var IEMac   = document.all && isMac;
var IE4     = document.all && navigator.appVersion.indexOf("MSIE 4.") != -1;
var IE5     = document.all && navigator.appVersion.indexOf("MSIE 5.") != -1;
var IE6     = document.all && navigator.appVersion.indexOf("MSIE 6.") != -1;

if( NS4 || IEMac )
{
	document.write( '<link rel="stylesheet" type="text/css" href="' + docRoot + '/styles/content.css">' );
}
else if( IE4 || IE5 || IE6 )
{
	document.write( '<link rel="stylesheet" type="text/css" href="' + docRoot + '/styles/content.css">' );
}
else
{
	document.write( '<link rel="stylesheet" type="text/css" href="' + docRoot + '/styles/content.css">' );
}
