/*Generates Microsoft Internet Explorer or Netscape*/
/*document.write("<p>appName = " + navigator.appName + "</p>");*/
	
/*Writes out the platform name*/
/*document.write("<p>platform = " + navigator.platform + "</p>");*/
	
/*Tests for Win or Mac in the platform string*/
if (navigator.platform.indexOf('Win') == 0) 
{
	document.write("<link rel='stylesheet' href='/as/_css/wse.css' />");
}	
if (navigator.platform.indexOf('Mac') == 0) 
{
	document.write("<link rel='stylesheet' href='/as/_css/wseMac.css' />");
}	
else 
{
	document.write("<link rel='stylesheet' href='/as/_css/wse.css' />");
}
