var browser = navigator.appName;
var pc = navigator.userAgent;
//プラットフォームチェック
if(pc.indexOf("Mac") != -1){
  pc ="Mac";
}else{
  pc ="Win";
}
//ブラウザチェック
if(browser.indexOf("MSIE") != -1){
  browser = "IE";
}else{
  browser = "NN";
}

if(pc == "Mac"){
  //document.write('macのスタイルシートを適用');
  document.write('<link rel="stylesheet" href="/css/txt_mac.css">');
}else{
  //document.write('winのスタイルシートを適用');
  document.write('<link rel="stylesheet" href="/css/txt_win.css">');
}

function openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
