//　スタイルシート　ブラウザー判別
function cssLoad(){
	winIE='/navi/navi.css';
	strApp=navigator.appName;
	strAgnt=navigator.userAgent;
	if (strAgnt.indexOf("Win") != -1) {
		if (strApp.indexOf('Microsoft') != -1) {
			document.write('<LINK rel="stylesheet" href="' + winIE + '">');
		}
	}
}
cssLoad();

