var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

document.writeln("");
if(navigator.appVersion.indexOf("Mac") > -1)
{
	if( bName == "M")
	 {
		// MAC IE
		document.writeln("<link rel='stylesheet' type='text/css' href='../../style.css' media='screen,print'>");

	}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
		document.writeln("<style type='text/css'><!--");
		document.writeln("body {background-color:#eeeeee;}");
		document.writeln("#menu {width:170px; height:315px; background-color:#008CCC; vertical-align:top;}");
		document.writeln("#contents {width:630px; vertical-align:top; background-color:white; text-align:center;}");
		document.writeln(".topic {width:800px; background-color:white;}");
		document.writeln("img {border:0px;}");
		document.writeln(".n-txt {line-height:1.3; margin-top:0px; margin-bottom:5px; margin-left:30px; text-align:left;}");
		document.writeln("--></style>");
		}
		else
		{
			// MAC NETSCAPE 6.x~
		document.writeln("<link rel='stylesheet' type='text/css' href='../../style.css' media='screen,print'>");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln("<link rel='stylesheet' type='text/css' href='../../style.css' media='screen,print'>");
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
		document.writeln("<style type='text/css'><!--");
		document.writeln("body {background-color:#eeeeee;}");
		document.writeln("#menu {width:170px; height:315px; background-color:#008CCC; vertical-align:top;}");
		document.writeln("#contents {width:630px; vertical-align:top; background-color:white; text-align:center;}");
		document.writeln(".topic {width:800px; background-color:white;}");
		document.writeln("img {border:0px;}");
		document.writeln(".n-txt {line-height:1.3; margin-top:0px; margin-bottom:5px; margin-left:30px; text-align:left;}");
		document.writeln("--></style>");
		}
		else
		{
			// WIN NETSCAPE 6.x~
		document.writeln("<link rel='stylesheet' type='text/css' href='../../style.css' media='screen,print'>");
		
		}
	}
}

