//================================================//
//   font.js by kinji.                            //
//================================================//

document.write("<style type='text/css'><!--");

var naviName = navigator.appName;
var naviPlatform = navigator.platform;
var naviVer = navigator.appVersion;

if( naviPlatform.charAt(0) == "W" ) {
		document.write("FONT { font-size: 13px; }");
		document.write(".size01 { font-size: 71%; }");
		document.write(".size02 { font-size: 16px; }");
} else {
		document.write("FONT { font-size: 10px; }");
		document.write(".size01 { font-size: 9px; }");
		document.write(".size02 { font-size: 14px; }");
}
document.write("//--></style>");
