{	var agt=navigator.userAgent.toLowerCase();		//Set font-family	if( (agt.indexOf("win")!=-1)||(agt.indexOf("16bit")!=-1) ){		//Win		//apply MS UI Gothic, ＭＳ Ｐゴシック		document.open();		document.write("<style>\n");		document.write("<!--\n");		document.write("body,th,td,input,textarea,pre,p,div{\n");		document.write('	font-family: "MS UI Gothic", "ＭＳ Ｐゴシック", "MS PGothic", verdana, arial, sans-serif;'+"\n");		document.write("}\n");		document.write("-->\n");		document.write("</style>\n");		document.close();	}else if(agt.indexOf("mac")!=-1){		//Mac		//apply ヒラギノ, Osaka		document.open();		document.write("<style>\n");		document.write("<!--\n");		document.write("body,th,td,input,textarea,pre,p,div{\n");		document.write('	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Ghothic Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", verdana, arial, sans-serif;'+"\n");		document.write("}\n");		document.write("-->\n");		document.write("</style>\n");		document.close();	}		//Set font-size	if( (agt.indexOf("msie")!=-1) && (agt.indexOf("win")!=-1) && (agt.indexOf("opera")==-1) ){		//IE win		document.open();		document.write("<style>\n");		document.write("<!--\n");		document.write("body,th,td,input,textarea,pre,p,div	{\n");		document.write('	font-size: small;'+"\n");		document.write("}\n");		document.write("-->\n");		document.write("</style>\n");		document.close();	}else{		//All but Win IE		if(agt.indexOf("win")!=-1){			//Windows platform			document.open();			document.write("<style>\n");			document.write("<!--\n");			document.write("body,th,td,input,textarea,pre,p,div{\n");			document.write('	font-size: small;'+"\n");			document.write("}\n");			document.write("-->\n");			document.write("</style>\n");			document.close();		}else{			//Others			document.open();			document.write("<style>\n");			document.write("<!--\n");			document.write("body,th,td,input,textarea,pre,p,div{\n");			document.write('	font-size: 9pt;'+"\n");			document.write("}\n");			document.write("-->\n");			document.write("</style>\n");			document.close();		}	}}