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(".smalltxt { font-size:9px; line-height:130%; color:#333}");
		document.writeln(".stantxt { font-size:12px; line-height:130%; color:#333}");
		document.writeln(".largetxt { font-size:14px; line-height:130%; color:#333}");
		document.writeln(".midashi1 { font-size:12px;font-family: 'Arial', 'Helvetica', 'sans-serif'; font-weight: bold; color: #666666; line-height: 100%; letter-spacing: 0.2em}");
	}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
			document.writeln(".smalltxt { font-size:10pt; line-height:130%; color:#333333}");
			document.writeln(".stantxt { font-size:12pt; line-height:130%; color:#333333}");
			document.writeln(".largetxt { font-size:14pt; line-height:130%; color:#333333}");
			document.writeln(".midashi1 { font-size:12pt; color:#333;font-weight: bold; color: #666666; line-height: 100%;}");
	 	}
	 	else
	 	{
			// MAC NETSCAPE 6.x~
			document.writeln(".smalltxt { font-size: 9px; line-height:130%; color:#333}");
			document.writeln(".stantxt { font-size:12px; line-height:130%; color:#333}");
			document.writeln(".largetxt { font-size:14px; line-height:130%; color:#333333}");
			document.writeln(".midashi1 { font-size:12px;font-family: 'Arial', 'Helvetica', 'sans-serif'; font-weight: bold; color: #666666; line-height: 100%; letter-spacing: 0.2em}");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
			document.writeln(".smalltxt { font-size:xx-small; line-height:130%; color:#333}");
			document.writeln(".stantxt { font-size:x-small; line-height:130%; color:#333}");
			document.writeln(".largetxt { font-size:small; line-height:130%; color:#333}");
			document.writeln(".midashi1 { font-size:x-small;font-family: 'Arial', 'Helvetica', 'sans-serif'; font-weight: bold; color: #666666; line-height: 100%; letter-spacing: 0.2em}");
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
			document.writeln(".smalltxt { font-size:x-small; line-height:130%; color:#333}");
			document.writeln(".stantxt { font-size:small; line-height:130%; color:#333}");
			document.writeln(".largetxt { font-size:medium; line-height:130%; color:#333}");
			document.writeln(".midashi1 { font-size:small; color:#333;font-weight: bold; color: #666666; line-height: 100%;}");
		}
		else
		{
			// WIN NETSCAPE 6.x~
			document.writeln(".smalltxt { font-size: x-small; line-height:130%; color:#333}");
			document.writeln(".stantxt { font-size: small; line-height:130%; color:#333}");
			document.writeln(".largetxt { font-size: medium; line-height:130%; color:#333}");
			document.writeln(".midashi1 { font-size:small;font-family: 'Arial', 'Helvetica', 'sans-serif'; font-weight: bold; color: #666666; line-height: 100%; letter-spacing: 0.2em}");
		}
	}
}
 document.writeln("--></STYLE>");

