/* fontsize.js

*  ver1.4  2004.11.17 

*  Copyright(c) MARS,ltd. All Rights Reserved.

*/



var Win = (navigator.appVersion.indexOf("Windows") != -1);

var Mac = (navigator.appVersion.indexOf("Mac") != -1);

var IE  = (navigator.appName.indexOf("Internet Explorer") != -1);

var NS  = (navigator.appName.indexOf("Netscape") != -1);

var Opera = (navigator.userAgent.indexOf("Opera")!=-1);

var Konqueror = (navigator.userAgent.indexOf("Konqueror")!=-1);

var saf = (navigator.userAgent.indexOf("Safari")!=-1);





document.write("<style type='text/css'>");

document.write("<!-- ");

if(saf){



  // Mac Safari  

    document.write(".large { font-size:small ; line-height:1.4 ;font-family:Verdana,Arial,Osaka,sans-serif;}");

    document.write(".main { font-size:x-small ; line-height:1.4 ;font-family:Verdana,Arial,Osaka,sans-serif;}");

	document.write(".sub { font-size:xx-small ; line-height:1.5 ;font-family:Verdana,Arial,Osaka,sans-serif;}");



}else if(Win && IE){



  // Win MSIE

	document.write(".large { font-size:small ; line-height:1.2 }");

	document.write(".main { font-size:x-small ; line-height:1.2 }");

	document.write(".sub { font-size:xx-small ; line-height:1.4}");



}else if(Mac && IE && navigator.appVersion.indexOf("MSIE 4",0) != -1){



  // Mac MSIE 4.x

	document.write(".large { font-size:small ; line-height:1.2 }");

	document.write(".main { font-size:x-small ; line-height:1.2 }");

	document.write(".sub { font-size:xx-small ; line-height:1.4 }");



}else if(Mac && IE && navigator.appVersion.indexOf("MSIE 5",0) != -1){



  // Mac MSIE 5.x

	document.write(".large { font-size:small ; line-height:1.2 }");

	document.write(".main { font-size:x-small ; line-height:1.2 }");

	document.write(".sub { font-size:xx-small ; line-height:1.4 }");



}else if(Mac && NS && navigator.appVersion.indexOf("5.",0) != -1){



  // Mac Netscape6

	document.write(".large { font-size:small ; line-height:1.2 }");

	document.write(".main { font-size:x-small ; line-height:1.2 }");

	document.write(".sub { font-size:xx-small ; line-height:1.4 }");



}else if(Win && NS && navigator.appVersion.indexOf("4",0) != -1){



  // Win NN 4.x

	document.write(".large { font-size:small ; line-height:1.2 }");

	document.write(".main { font-size:x-small ; line-height:1.2 }");

	document.write(".sub { font-size:xx-small ; line-height:1.4 }");



}else if(Win && NS && navigator.appVersion.indexOf("5.",0) != -1){



  // Win Netscape6

	document.write(".large { font-size:small ; line-height:1.2}");

	document.write(".main { font-size:x-small ; line-height:1.2}");

	document.write(".sub { font-size:xx-small ; line-height:1.4 }");



}else{



 // Others

	document.write(".large { font-size:big ; line-height:1.2 }");

	document.write(".main { font-size:medium ; line-height:1.2 }");

	document.write(".sub { font-size:small ; line-height:1.4 }");



}



document.write(".hd { font-size: 14px ; line-height:1.2 }");

document.write("a.none { text-decoration:none }");

document.write("span.on { font-weight:bold; color:black }");

document.write("span.off { font-weight:normal }");

document.write(" -->");

document.write("</style>");
