/* 
   [Font Control(default  WinIE)]
   Last update on 2002.03.13
*/
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")
	 {
		// Macintosh IE 5
		document.writeln(".minus1x{font-Size:10px; line-height:11px}");
		document.writeln(".default0x{font-size:12px; line-height:13px}");
		document.writeln(".default1x{font-size:12px; line-height:16px}");
		document.writeln(".plus1x{font-Size:16px; line-height:17px}");
	}
	else
	{
		if( vNum < 5 )
		{
			// Macintosh NETSCAPE 4.x
			document.writeln(".minus1x{font-Size:10px; line-height:11px}");
			document.writeln(".default0x{font-size:12px ;line-height:13px}");
			document.writeln(".default1x{font-size:12px; line-height:16px}");
			document.writeln(".plus1x{font-Size:15px; line-height:16px}");
	 	}
	 	else
	 	{
			// Macintosh NETSCAPE 6.x~
			document.writeln(".minus1x{font-Size:9px; line-height:11px}");
			document.writeln(".default0x{font-size:12px; line-height:14px}");
			document.writeln(".default1x{font-size:12px; line-height:16px}");
			document.writeln(".plus1x{font-Size:14px; line-height:17px}");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// Windows IE
		document.writeln(".minus1x{font-Size:11px; line-height:13px;}");
		document.writeln(".default0x{font-size:12px; line-height:14px; letter-spacing:1px}");
		document.writeln(".default1x{font-size:12px; line-height:16px; letter-spacing:1px}");
		document.writeln(".plus1x{font-Size:16px}");
	}
	else
	{
		if( vNum < 5 )
		{
			// Windows NETSCAPE 4.x
			document.writeln(".minus1x{font-Size:11px; line-height:14px}");
			document.writeln(".default0x{font-size:14px; line-height:15px}");
			document.writeln(".default1x{font-size:14px; line-height:16px}");
			document.writeln(".plus1x{font-Size:16px; line-height:18px}");
		}
		else
		{
			// Windows NETSCAPE 6.x~
			document.writeln(".minus1x{font-Size:11px; line-height:14px}");
			document.writeln(".default0x{font-size:13px; line-height:15px}");
			document.writeln(".default1x{font-size:13px; line-height:16px}");
			document.writeln(".plus1x{font-Size:17px}");		
		}
	}
}
 document.writeln("--></STYLE>");
