if(navigator.appVersion.indexOf("Mac",0) == -1){

////	for windows
	document.writeln('<style type="text/css"><!--');
////	TEXT
	document.writeln('body 		{font-size:12px; font-family:"MS UI Gothic"}');
	document.writeln('td 		{font-size:12px; font-family:"MS UI Gothic"}');
	document.writeln('.small 	{font-size:12px; font-family:"MS UI Gothic"}');
////	LINK
	document.writeln('a:link	{text-decoration:none;      color:#0066CC}');
	document.writeln('a:visited	{text-decoration:none;      color:#ff6600}');
	document.writeln('a:active	{text-decoration:none;      color:#ff6600}');
	document.writeln('a:hover	{text-decoration:underline; color:#ffff00}');
////	end of define
	document.writeln('--></style>');

}else{

//// for macintosh
	if(navigator.appVersion.indexOf("MSIE 4.",0) == -1){

		document.writeln('<style type="text/css"><!--');
////////	TEXT
		document.writeln('body 		{font-size:12px; font-family:"Osaka"}');
		document.writeln('td 		{font-size:12px; font-family:"Osaka"}');
		document.writeln('.small 	{font-size:10px; font-family:"Osaka"}');
////////	LINK
		document.writeln('a:link	{text-decoration:none;      color:#0066CC}');
		document.writeln('a:visited	{text-decoration:none;      color:#ff6600}');
		document.writeln('a:active	{text-decoration:none;      color:#ff6600}');
		document.writeln('a:hover	{text-decoration:underline; color:#ffff00}');
////////	end of define
		document.writeln('--></style>');

	}else{
////////	for macintosh of IE4.X

		document.writeln('<style type="text/css"><!--');
////////	TEXT
		document.writeln('body 		{font-size:10px; font-family:"Osaka"}');
		document.writeln('td 		{font-size:10px; font-family:"Osaka"}');
		document.writeln('.small 	{font-size: 8px; font-family:"Osaka"}');
////////	LINK
		document.writeln('a:link	{text-decoration:none;      color:#0066CC}');
		document.writeln('a:visited	{text-decoration:none;      color:#ff6600}');
		document.writeln('a:active	{text-decoration:none;      color:#ff6600}');
		document.writeln('a:hover	{text-decoration:underline; color:#ffff00}');
////////	end of define
		document.writeln('--></style>');
	}
}
