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(".txt1{font-size: 8pt; line-height: 9pt}");
		document.writeln(".txt2{font-Size:10px; line-height: 11pt}");
		document.writeln(".txt3{font-Size:12px; line-height: 13pt}");
		document.writeln(".txt4{font-Size:14px; line-height: 15pt}");
	}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
		document.writeln(".txt1{font-Size:10px; line-height: 11pt}");
		document.writeln(".txt2{font-Size:12px; line-height: 14pt}");
		document.writeln(".txt3{font-Size:14px; line-height: 15pt}");
		document.writeln(".txt4{font-Size:16px; line-height: 17pt}");
	 	}
	 	else
	 	{
			// MAC NETSCAPE 6.x~
		document.writeln(".txt1{font-size: 8pt; line-height: 9pt}");
		document.writeln(".txt2{font-Size:10px; line-height: 11pt}");
		document.writeln(".txt3{font-Size:12px; line-height: 14pt}");
		document.writeln(".txt4{font-Size:14px; line-height: 15pt}");	
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".txt1{font-size: 8pt; line-height: 9pt}");
		document.writeln(".txt2{font-Size:10px; line-height: 11pt}");
		document.writeln(".txt3{font-Size:12px; line-height: 13pt}");
		document.writeln(".txt4{font-Size:14px; line-height: 15pt}");
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
		document.writeln(".txt1{font-Size:10px; line-height: 11pt}");
		document.writeln(".txt2{font-Size:12px; line-height: 14pt}");
		document.writeln(".txt3{font-Size:14px; line-height: 15pt}");
		document.writeln(".txt4{font-Size:16px; line-height: 17pt}");
		}
		else
		{
			// WIN NETSCAPE 6.x~
		document.writeln(".txt1{font-size: 8pt; line-height: 9pt}");
		document.writeln(".txt2{font-Size:10px; line-height: 11pt}");
		document.writeln(".txt3{font-Size:12px; line-height: 13pt}");
		document.writeln(".txt4{font-Size:14px; line-height: 15pt}");
		
		}
	}
}
 document.writeln("--></STYLE>");

