//　ブラウザ判定初期設定
var apVer = navigator.appVersion;
var chkApVer = apVer.indexOf("Win",0);
var pFm;
var bRw;

//　プラットフォームの判定用関数
function chkPltfrm() {
	if (chkApVer != -1 ) {
		pFm = "Win";
			return
	}else{
		chkApVer = apVer.indexOf("Mac",0);
		if (chkApVer != -1 ) {
			pFm = "Mac";
			return
		}else{
			pFm = "";
			return
		}
	}
}


//　プラットフォーム、ブラウザ判定実行
chkPltfrm();

//document.write (pFm+"です");

//　スタイルシートの振り分け
if (pFm == "Win") {
	document.write ('<link rel="stylesheet" href="http://www.o-cross.net/css/win.css" type="text/css" title="Win">');
} else if (pFm == "Mac") {
	document.write ('<link rel="stylesheet" href="http://www.o-cross.net/css/mac.css" type="text/css" title="Mac">');
} else {
	document.write ('<link rel="stylesheet" href="http://www.o-cross.net/css/style.css" type="text/css" title="Ather">');
}