//do browser detect stuff
var isNS = (navigator.appName == "Netscape");

if (isNS)
{
	//alert ("Made it into Netscape");
	document.write("<link rel='stylesheet' type='text/css' href='/cmgshared/stylesheets/NetscapeStyles.css'>");
}
else
{
	//alert("Made it into IE");
	document.write("<link rel='stylesheet' type='text/css' href='/cmgshared/stylesheets/IEStyles.css'>");
}

