// ブラウザ情報の取得
// ver.2005.01.06

var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

if(navigator.appVersion.indexOf("Mac") >-1)
{
	if( bName == "M")
	 {
		// MAC IE
		document.write ('<link rel="stylesheet" type="text/css" href="/script_top/css/mac_ie.css">')
	}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
			document.write ('<link rel="stylesheet" type="text/css" href="/script_top/css/mac_nn4.css">')
	 	}
	 	else
	 	{
			// MAC NETSCAPE 6.x~
			document.write ('<link rel="stylesheet" type="text/css" href="/script_top/css/mac_nn.css">')
	 	}
	 }
}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.write ('<link rel="stylesheet" type="text/css" href="/script_top/css/win_ie.css">')
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
			document.write ('<link rel="stylesheet" type="text/css" href="/script_top/css/win_nn4.css">')
		}
		else
		{
			// WIN NETSCAPE 6.x~
			document.write ('<link rel="stylesheet" type="text/css" href="/script_top/css/win_nn.css">')
		}
	}
}



