// FONTSIZE.JS VER 1.0
// LAST MODIFIED ON 2004.09.09

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") {
		flag = 'macintosh internet explorer';
		document.write ('.Text-S { font-size: 10px; line-height: 12px }');
		document.write ('.menu { font-size: 9px }');
	} else {
		if (vNum < 5) {
			flag = 'macintosh netscape 4.x';
			document.write ('.Text-S { font-size: 10px; line-height: 12px }');
			document.write ('.menu { font-size: 9px; line-height: 11px }');
	 	} else {
			flag = 'macintosh netscape 6.x';
			document.write ('.Text-S { font-size: 10px; line-height: 12px }');
			document.write ('.menu { font-size: 9px; line-height: 11px }');
		}
	}
} else {
	if (bName == "M") {
		flag = 'windows internet explorer';
		document.write(".Text-S { font-size: 8pt; line-height: 10pt }")
		document.write ('.menu { font-size: 8pt; line-height: 11pt }');
	} else {
		if (vNum < 5) {
			flag = 'windows netscape 4.x';
			document.write(".Text-S { font-size: 8pt; line-height: 10pt }")
			document.write ('.menu { font-size: 8pt; line-height: 11pt }');
		} else {
			flag = 'windows netscape 6.x';
			document.write(".Text-S { font-size: 8pt; line-height: 10pt }")
			document.write ('.menu { font-size: 8pt; line-height: 11pt }');
		}
	}
}

document.writeln("--></STYLE>");

// alert (flag);  // for debug
