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

document.writeln("--></STYLE>");

