<!--
// Stylesheet

var user;

user = navigator.userAgent.toLowerCase( );
if(user.indexOf("x11",0) != -1 && user.indexOf("nav",0) != -1)
	{document.write("<link rel='stylesheet' href='style/style_x11_ns.css' type='text/css'>");
	}
else if(user.indexOf("x11",0) != -1)
	{document.write("<link rel='stylesheet' href='style/style_x11.css' type='text/css'>");
	}
else if(user.indexOf("mac",0) != -1 && user.indexOf("safari",0) != -1)
	{document.write("<link rel='stylesheet' href='style/style_mac_safari.css' type='text/css'>");
	}
else if(user.indexOf("mac",0) != -1 && user.indexOf("firefox",0) != -1)
	{document.write("<link rel='stylesheet' href='style/style_mac_firefox.css' type='text/css'>");
	}	
else if(user.indexOf("mac",0) != -1 && navigator.appName.indexOf("Netscape",0) != -1 && user.indexOf("netscape",0) == -1)
	{document.write("<link rel='stylesheet' href='style/style_mac_ns.css' type='text/css'>");
	}
else if(user.indexOf("mac",0) != -1 && parseInt(user.substr((user.indexOf("msie")+5), 9)) < 5 && user.indexOf("msie",0) != -1)
	{document.write("<link rel='stylesheet' href='style/style_mac_ie.css' type='text/css'>");
	}
else if(user.indexOf("win",0) != -1 && navigator.appName.indexOf("Netscape",0) != -1 && user.indexOf("netscape",0) == -1 && user.indexOf("firefox",0) == -1)
	{document.write("<link rel='stylesheet' href='style/style_win_ns.css' type='text/css'>");
	}
else if(user.indexOf("win",0) != -1 && user.indexOf("firefox",0) != -1 && navigator.appName.indexOf("Netscape",0) != -1)
	{document.write("<link rel='stylesheet' href='style/style_win_firefox.css' type='text/css'>");
	}
else 
	{document.write("<link rel='stylesheet' href='style/stylesheet.css' type='text/css'>");
	}		

// End Stylesheet

 
//-->
