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(".j10{font-Size:75%; line-height:135%}");
		document.writeln(".j12{font-size:90%; line-height: 130%}");
		document.writeln(".j14{font-Size:95%; line-height:120%;}");
		document.writeln(".j14b{font-Size:95%; line-height:120%; font-weight: bold;}");
		document.writeln(".j16{font-Size:108%; line-height:120%; letter-spacing:1px}");
	}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
		document.writeln(".j10{font-Size:80%; line-height:130%}");
		document.writeln(".j12{font-size:110%; line-height: 140%}");
		document.writeln(".j14{font-Size:120%; line-height:130%}");
		document.writeln(".j14b{font-Size:120%; line-height:130% font-weight: bold;}");
		document.writeln(".j16{font-Size:140%; line-height:120%; letter-spacing:1px}");

	 	}

	 	else
	 	{
			// MAC NETSCAPE 6.x~
		document.writeln(".j10{font-Size:80%; line-height:120%}");
		document.writeln(".j12{font-size: 110%; line-height: 130%}");
		document.writeln(".j14{font-Size:115%; line-height:120%;}");
		document.writeln(".j14b{font-Size:115%; line-height:120%; font-weight: bold;}");
		document.writeln(".j16{font-Size:120%; line-height:120%; letter-spacing:1px}");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".j10{font-Size:70%; line-height:120%}");
		document.writeln(".j12{font-size:80%; line-height: 130%}");
		document.writeln(".j14{font-Size:95%; line-height:110%;}");
		document.writeln(".j14b{font-Size:95%; line-height:110%; font-weight: bold;}");
		document.writeln(".j16{font-Size:110%; line-height:120%; letter-spacing:1px}");
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
		document.writeln(".j10{font-Size:100%; line-height:120%}");
		document.writeln(".j12{font-size:130%; line-height: 140%}");
		document.writeln(".j14{font-Size:140%; line-height:120%}");
		document.writeln(".j14b{font-Size:140%; line-height:120% font-weight: bold;}");
		document.writeln(".j16{font-Size:160%; line-height:120%; letter-spacing:1px}");
		}
		else
		{
			// WIN NETSCAPE 6.x~
		document.writeln(".j10{font-Size:70%; line-height:120%}");
		document.writeln(".j12{font-size: 85%; line-height:140%}");
		document.writeln(".j14{font-Size:95%; line-height:120%;}");
		document.writeln(".j14b{font-Size:95%; line-height:120%; font-weight: bold;}");
		document.writeln(".j16{font-Size:110%; line-height:120%; letter-spacing:1px}");
		
		}
	}
}
 document.writeln("</STYLE>");


