/* スタイルシート分岐 */

var PlatForm = window.navigator.platform;
if(PlatForm == "Win32" || PlatForm == "Win16"){
	document.write("<link rel='stylesheet' type='text/css' href='css/win.css'>");
	document.close();
} else if (PlatForm == "Mac68k" || PlatForm == "MacPPC") {
	document.write("<link rel='stylesheet' type='text/css' href='css/mac.css'>");
	document.close();
}	else {
	document.write("<link rel='stylesheet' type='text/css' href='css/win.css'>");
	document.close();
}

