

var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

document.writeln("<STYLE TYPE='text/css'><!--");
if(navigator.appVersion.indexOf("Mac") > -1)
{
	if( bName == "M")
	 {
		// MAC IE
		document.writeln(".smallest{font-size:9px}");
		document.writeln(".small100{font-Size:10px}");
		document.writeln(".small120{font-Size:10px; line-height:120%}");
		document.writeln(".small150{font-Size:10px; line-height:130%}");
		document.writeln(".small170{font-Size:10px; line-height:160%}");
		document.writeln(".normal130{font-Size:12px; line-height:130%}");
		document.writeln(".normal160{font-Size:12px; line-height:160%}");
		document.writeln(".medium120{font-Size:18px; line-height:120%}");
		document.writeln(".large100{font-Size:24px; line-height:110%}");
		document.writeln("SELECT{font-Size:10px; font-family:Osaka,sans-serif}");
		document.writeln("a:link{color: #0066FF}");
		document.writeln("a:visited{color: #330033}");
		document.writeln("a:hover{color: #FF0000}");
	}
	else
	{
		if( vNum < 5 )
		{
		// MAC NETSCAPE 4.x
		document.writeln(".smallest{font-size:10pt}");
		document.writeln(".small100{font-Size:10pt}"); 
		document.writeln(".small120{font-Size:10pt; line-height:110%}"); 
		document.writeln(".small150{font-Size:10pt; line-height:110%}"); 
		document.writeln(".small170{font-Size:10pt; line-height:130%}"); 
		document.writeln(".normal130{font-Size:12pt; line-height:130%}");
		document.writeln(".normal160{font-Size:12pt; line-height:150%}");	
		document.writeln(".medium120{font-Size:18pt; line-height:110%}");
		document.writeln(".large100{font-Size:24pt; line-height:110%}");
		document.writeln("a:link{color: #0066FF}");
		document.writeln("a:visited{color: #330033}");
		document.writeln("a:hover{color: #FF0000}");
	 	}
	 	else
	 	{
		// MAC NETSCAPE 6.x~ Safari
		document.writeln(".smallest{font-size:10px}");
		document.writeln(".small100{font-Size:10px}"); 
		document.writeln(".small120{font-Size:10px; line-height:120%}"); 
		document.writeln(".small150{font-Size:10px; line-height:120%}"); 
		document.writeln(".small170{font-Size:10px; line-height:140%}"); 
		document.writeln(".normal130{font-Size:12px; line-height:130%}");
		document.writeln(".normal160{font-Size:12px; line-height:140%}");
		document.writeln(".medium120{font-Size:18px; line-height:120%}");
		document.writeln(".large100{font-Size:24px; line-height:120%}");
		document.writeln("SELECT{font-Size:11px; font-family:Osaka,sans-serif}");
		document.writeln("a:link{color: #0066FF}");
		document.writeln("a:visited{color: #330033}");
		document.writeln("a:hover{color: #FF0000}");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".smallest{font-Size:11px}");
		document.writeln(".small100{font-Size:12px}");
		document.writeln(".small120{font-Size:12px; line-height:16px}");
		document.writeln(".small150{font-Size:12px; line-height:16px}");
		document.writeln(".small170{font-Size:12px; line-height:19px}");
		document.writeln(".normal130{font-Size:14px; line-height:19px}");
		document.writeln(".normal160{font-Size:14px; line-height:22px}");
		document.writeln(".medium120{font-Size:16px; line-height:20px}");
		document.writeln(".large100{font-Size:24px; line-height:26px}");
		document.writeln("SELECT{font-Size:12px; font-family:‚l‚r ‚oƒSƒVƒbƒN,sans-serif}");
		document.writeln("a:link{color: #0066FF}");
		document.writeln("a:visited{color: #330033}");
		document.writeln("a:hover{color: #FF0000}");
	}
	else
	{
		if( vNum < 5 )
		{
		// WIN NETSCAPE 4.x
		document.writeln(".smallest{font-Size:85%}");
		document.writeln(".small100{font-Size:90%; line-height:100%}");
		document.writeln(".small120{font-Size:90%; line-height:130%}");
		document.writeln(".small150{font-Size:90%; line-height:120%}");
		document.writeln(".small170{font-Size:90%; line-height:140%}");
		document.writeln(".normal130{font-Size:110%; line-height:140%}");
		document.writeln(".normal160{font-Size:110%; line-height:160%}");
		document.writeln(".medium120{font-Size:130%; line-height:140%}");
		document.writeln(".large100{font-Size:190%; line-height:110%}");
		document.writeln("a:link{color: #0066FF}");
		document.writeln("a:visited{color: #330033}");
		document.writeln("a:hover{color: #FF0000}");
		}
		else
		{
		// WIN NETSCAPE 6.x~
		document.writeln(".smallest{font-Size:11px}");
		document.writeln(".small100{font-Size:12px}");
		document.writeln(".small120{font-Size:12px; line-height:16px}");
		document.writeln(".small150{font-Size:12px; line-height:16px}");
		document.writeln(".small170{font-Size:12px; line-height:19px}");
		document.writeln(".normal130{font-Size:14px; line-height:19px}");
		document.writeln(".normal160{font-Size:14px; line-height:22px}");
		document.writeln(".medium120{font-Size:16px; line-height:20px}");
		document.writeln(".large100{font-Size:24px; line-height:26px}");
		document.writeln("SELECT{font-Size:12px; font-family:‚l‚r ‚oƒSƒVƒbƒN,sans-serif}");
		document.writeln("a:link{color: #0066FF}");
		document.writeln("a:visited{color: #330033}");
		document.writeln("a:hover{color: #FF0000}");
		}
	}
}
 document.writeln("--></STYLE>");


