

var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);
if ( bName == "M" && vNum < 4)
	location.href="getnewbrowser.html";
if ( bName == "N" && vNum < 4)
	location.href="getnewbrowser.html";

document.writeln("<STYLE TYPE='text/css'><!--");
if(navigator.appVersion.indexOf("Mac") > -1)
{
	if( bName == "M")
	 {
		// MAC IE
		document.writeln(".menu { font-size: 12px; }");
		document.writeln(".titlebold { font-size: 12px; line-height: 150%; font-weight: bold; }");
		document.writeln(".t01 { font-size: 12px; line-height: 150%; }");
		document.writeln(".t02 { font-size: 14px; line-height: 150%;}");
		document.writeln(".s01 { font-size: 10px; line-height: 130%;}");
		document.writeln(".s11 { font-size: 11px; }");
		document.writeln(".s02 { font-size:  10px; line-height: 150%; color:#666666; }");
		document.writeln(".titlebig { font-size:  16px; line-height: 150%; font-weight: bold; }");
	}
	else
	{
		if( vNum < 5 )
		{
		// MAC NETSCAPE 4.x
		document.writeln(".menu { font-size: 85%; }");
		document.writeln(".title { font-size: 85%; line-height: 130%; font-weight: bold; }");
		document.writeln(".t01 { font-size:  85%; line-height: 130%; }");
		document.writeln(".t02 { font-size: 100%; line-height: 130%;}");
		document.writeln(".s01 { font-size:  65%; line-height: 130%;}");
		document.writeln(".s11 { font-size:  70%; }");
		document.writeln(".s02 { font-size:  65%; line-height: 130%; color:#666666; }");
		document.writeln(".titlebig { font-size:  120%; line-height: 130%; font-weight: bold; }");
	 	}
	 	else
	 	{
		// MAC NETSCAPE 6.x~
		document.writeln(".menu { font-size: 90%; }");
		document.writeln(".title { font-size: 90%; line-height: 130%; font-weight: bold; }");
		document.writeln(".t01 { font-size:  90%; line-height: 130%; }");
		document.writeln(".t02 { font-size: 100%; line-height: 130%;}");
		document.writeln(".s01 { font-size:  65%; line-height: 130%;}");
		document.writeln(".s11 { font-size:  70%; }");
		document.writeln(".s02 { font-size:  65%; line-height: 130%; color:#666666; }");
		document.writeln(".titlebig { font-size:  130%; line-height: 130%; font-weight: bold; }");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".menu { font-size: 80%; }");
		document.writeln(".title { font-size: 80%; line-height: 145%; font-weight: bold; }");
		document.writeln(".t01 { font-size:  80%; line-height: 145%;}");
		document.writeln(".t02 { font-size: 100%; line-height: 145%;}");
		document.writeln(".s01 { font-size:  65%; line-height: 145%;}");
		document.writeln(".s11 { font-size:  70%; }");
		document.writeln(".s02 { font-size:  65%; line-height: 145%; color:#666666; }");
		document.writeln(".titlebig { font-size:  120%; line-height: 145%; font-weight: bold; }");
	}
	else
	{
		if( vNum < 5 )
		{
		// WIN NETSCAPE 4.x
		document.writeln(".menu { font-size: 80%; }");
		document.writeln(".title { font-size: 80%; line-height: 130%; font-weight: bold; }");
		document.writeln(".t01 { font-size:  80%; line-height: 130%;}");
		document.writeln(".t02 { font-size: 100%; line-height: 130%;}");
		document.writeln(".s01 { font-size:  75%; line-height: 130%;}");
		document.writeln(".s11 { font-size:  78%; }");
		document.writeln(".s02 { font-size:  75%; line-height: 130%; color:#666666; }");
		document.writeln(".titlebig { font-size:  120%; line-height: 130%; font-weight: bold; }");
		}
		else
		{
		// WIN NETSCAPE 6.x~
		document.writeln(".menu { font-size: 80%; }");
		document.writeln(".title { font-size: 80%; line-height: 130%; font-weight: bold; }");
		document.writeln(".t01 { font-size:  80%; line-height: 130%;}");
		document.writeln(".t02 { font-size: 100%; line-height: 130%;}");
		document.writeln(".s01 { font-size:  65%; line-height: 130%;}");
		document.writeln(".s11 { font-size:  70%; }");
		document.writeln(".s02 { font-size:  65%; line-height: 130%; color:#666666; }");
		document.writeln(".titlebig { font-size:  120%; line-height: 130%; font-weight: bold; }");
		}
	}
}
 document.writeln("--></STYLE>");


