/* /news 以下、個別ニュース記事html用（旧filemker.jp）  */


var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

if ((navigator.userAgent.indexOf('MSIE 5.12') != -1) ||(navigator.userAgent.indexOf('MSIE 5.2') != -1) || (navigator.userAgent.indexOf('MSIE 5.14') != -1) || ((navigator.userAgent.indexOf('Mozilla') != -1) && (navigator.userAgent.indexOf('Mac OS X') != -1)))
{
	if(navigator.userAgent.indexOf('Netscape') != -1)
		{
		document.write("<link href='css/macosx_n6x.css' rel='stylesheet' type='text/css'>");
		}
		else
		{
		document.write("<link href='css/macosx_ie5.css' rel='stylesheet' type='text/css'>");
		}
}
else
{
	if(navigator.appVersion.indexOf("Mac") > -1)
	{
		if( bName == "M")
		{
			// MAC IE
			document.write("<link href='css/mac_ie5.css' rel='stylesheet' type='text/css'>");
		}
		else
		{
			if( vNum < 5 )
			{
				// MAC NETSCAPE 4.x
				document.write("<link href='css/mac_n4x.css' rel='stylesheet' type='text/css'>");
	 		}
	 		else
	 		{
				// MAC NETSCAPE 6.x~
				document.write("<link href='css/mac_n6x.css' rel='stylesheet' type='text/css'>");
	 		}
		}
	}
	else
	{
		if( bName == "M")
		{
			// WIN IE
			document.write("<link href='css/win_ie.css' rel='stylesheet' type='text/css'>");
		}
		else
		{
			if( vNum < 5 )
			{
				// WIN NETSCAPE 4.x
				document.write("<link href='css/win_n4x.css' rel='stylesheet' type='text/css'>");
			}
			else
			{
				// WIN NETSCAPE 6.x~
				document.write("<link href='css/win_n6x.css' rel='stylesheet' type='text/css'>");
			}
		}
	}
}
