// JavaScript Document
if(-1 != navigator.platform.indexOf("Win32"))
	{
		// Windows
		if(-1 != navigator.userAgent.indexOf("MSIE"))
		{
			// Internet Explorer
			document.write('<link rel="stylesheet" href="css/ie.css" type="text/css">');
		}
		else
		{
			// other (netscape)
			document.write('<link rel="stylesheet" href="css/other.css" type="text/css">');
		}
	}
	else
	{
		// other (mac)
		document.write('<link rel="stylesheet" href="css/other.css" type="text/css">');
	}