if(navigator.platform.indexOf("Mac",0) != -1){//?os	if(navigator.userAgent.indexOf("Netscape6",0) != -1){	//mac ns6		document.writeln('<style type=\"text/css\"><!--');		document.writeln('td		{ font-size\: 12px\; font-family\: Osaka }');		document.writeln('\.small { font-size\: 10px\; font-family\: Osaka }');		document.writeln('--></style>');	}	else if(navigator.userAgent.indexOf("Netscape/7",0) != -1){	//mac ns7		document.writeln('<style type=\"text/css\"><!--');		document.writeln('td		{ font-size\: 12px\; font-family\: Osaka }');		document.writeln('\.small { font-size\: 10px\; font-family\: Osaka }');		document.writeln('--></style>');	}	else if(navigator.userAgent.indexOf("Safari",0) != -1){	//mac Safari		document.writeln('<style type=\"text/css\"><!--');		document.writeln('td		{ font-size\: 12px\; font-family\: Osaka }');		document.writeln('\.small { font-size\: 10px\; font-family\: Osaka }');		document.writeln('--></style>');	}	else if(navigator.userAgent.indexOf("MSIE 5",0) != -1){	//mac ie5		document.writeln('<style type=\"text/css\"><!--');		document.writeln('td		{ font-size\: 12px\; font-family\: Osaka }');		document.writeln('\.small { font-size\: 10px\; font-family\: Osaka }');		document.writeln('--></style>');	}	else{	//mac ns4		document.writeln('<style type=\"text/css\"><!--');		document.writeln('td		{ font-size\: 12px\; font-family\: Osaka }');		document.writeln('\.small { font-size\: 10px\; font-family\: Osaka }');		document.writeln('--></style>');	}}else {//win	document.writeln('<style type=\"text/css\"><!--');	document.writeln('td 			{ font-size\: 14px\; font-family\: "MS UI Gothic"; line-height:20px}');	document.writeln('.small 		{ font-size\: 12px\; font-family\: "MS UI Gothic"; line-height:17px}');	document.writeln('--></style>');}
