if(navigator.appVersion.indexOf("Mac",0) != -1){
//?os
	if(navigator.userAgent.indexOf("Safari",0) != -1){
	//mac Safari
		fontWrite01();
	} else if(navigator.userAgent.indexOf("Netscape/7",0) != -1){
	//mac ns7
		fontWrite01();
	} else if(navigator.userAgent.indexOf("Netscape6",0) != -1){
	//mac ns6
		fontWrite01();
	} else if(navigator.userAgent.indexOf("Camino",0) != -1){
	//mac Camino
		fontWrite01();
	} else if(navigator.userAgent.indexOf("Gecko",0) != -1){
	//mac Mozilla
		fontWrite01();
	}
	//
	//IE
	//
	else if(navigator.userAgent.indexOf("MSIE 5",0) != -1){
	//mac IE5
		fontWrite01();
	} else if(navigator.userAgent.indexOf("MSIE 4",0) != -1){
	//mac IE4
		fontWrite02();
	}
	//
	//Other
	//
	else if(navigator.userAgent.indexOf("Opera",0) != -1){
	//mac Opera
		fontWrite01();
	} else if(navigator.userAgent.indexOf("iCab",0) != -1){
	//mac iCab
		fontWrite01();
	} else if(navigator.userAgent.indexOf("OmniWeb",0) != -1){
	//mac OmniWeb
		fontWrite01();
	} else if(navigator.userAgent.indexOf("Gecko",0) == -1){
	//mac Netscape4
		fontWrite02();
	} else {
	//Other
		fontWrite01();
	}
} else {
//win&Linux
	if(navigator.userAgent.indexOf("Netscape/7",0) != -1){
	//win ns7
		fontWrite01();
	} else if(navigator.userAgent.indexOf("Netscape6",0) != -1){
	//win ns6
		fontWrite01();
	} else if(navigator.userAgent.indexOf("Camino",0) != -1){
	//win Camino
		fontWrite01();
	} else if(navigator.userAgent.indexOf("Gecko",0) != -1){
	//win Mozilla
		fontWrite01();
	}
	//
	//IE
	//
	else if(navigator.userAgent.indexOf("MSIE 6",0) != -1){
	//win IE6
		fontWrite01();
	} else if(navigator.userAgent.indexOf("MSIE 5",0) != -1){
	//win IE5
		fontWrite01();
	} else if(navigator.userAgent.indexOf("MSIE 4",0) != -1){
	//win IE4
		fontWrite01();
	} else if(navigator.userAgent.indexOf("MSIE",0) != -1){
	//win MS
		fontWrite01();
	}
	//
	//Other
	//
	else if(navigator.userAgent.indexOf("Opera",0) != -1){
	//win Opera
		fontWrite01();
	} else if(navigator.userAgent.indexOf("Gecko",0) == -1){
	//win Netscape4
		fontWrite02();
	} else {
	//Other
		fontWrite01();
	}
}


//
function fontWrite01(){
	document.writeln("<style type=\"text/css\"><!--");
	document.writeln("\.small { font-size\: 8pt\; line-height\: 13pt; font-family: '‚l‚r ‚oƒSƒVƒbƒN', 'Osaka';}");
	document.writeln("\.text { font-size\: 10pt\; line-height\: 14pt; font-family: '‚l‚r ‚oƒSƒVƒbƒN', 'Osaka';}");
	document.writeln("\.text_m { font-size\: 11pt\; line-height\: 14pt; font-family: '‚l‚r ‚oƒSƒVƒbƒN', 'Osaka';}");
	document.writeln("\.nolinesmall { font-size\: 8pt\; font-family: '‚l‚r ‚oƒSƒVƒbƒN', 'Osaka';}");
	document.writeln("\.nolinetext { font-size\: 10pt\; font-family: '‚l‚r ‚oƒSƒVƒbƒN', 'Osaka';}");
	document.writeln("--></style>");
}
//mac ns4
function fontWrite02(){
	document.writeln("<style type=\"text/css\"><!--");
	document.writeln("\.small { font-size\: 12pt\; line-height\: 14pt ; font-family: '‚l‚r ‚oƒSƒVƒbƒN', 'Osaka';}");
	document.writeln("\.text { font-size\: 15pt\; line-height\: 20pt ; font-family: '‚l‚r ‚oƒSƒVƒbƒN', 'Osaka';}");
	document.writeln("\.text_m{ font-size\: 17pt\; line-height\: 20pt ; font-family: '‚l‚r ‚oƒSƒVƒbƒN', 'Osaka';}");
	document.writeln("\.nolinesmall { font-size\: 12pt\; font-family: '‚l‚r ‚oƒSƒVƒbƒN', 'Osaka';}");
	document.writeln("\.nolinetext { font-size\: 15pt\; font-family: '‚l‚r ‚oƒSƒVƒbƒN', 'Osaka';}");
	document.writeln("--></style>");
}

//alert(navigator.userAgent);