//-------------------------------------------------
// IEのバグ対策
// 文字コードがUTF-8になるように日本語を入れておく
// 2008/03/09 12:03
//-------------------------------------------------

     if(navigator.appName=="Netscape"){
       if(navigator.appVersion.indexOf("Mac")!=-1)
      document.write('<link rel="stylesheet" type="text/css" href="new_html/css/mac_nn.css" title="fontproperty">');

       else if(navigator.appVersion.indexOf("Win")!=-1)
      document.write('<link rel="stylesheet" type="text/css" href="new_html/css/win_nn.css" title="fontproperty">');
}

     else if(navigator.appName=="Microsoft Internet Explorer"){
       if(navigator.appVersion.indexOf("Mac")!=-1)
      document.write('<link rel="stylesheet" type="text/css" href="new_html/css/mac_ie.css" title="fontproperty">');

       else if(navigator.appVersion.indexOf("Win")!=-1)
      document.write('<link rel="stylesheet" type="text/css" href="new_html/css/win_ie.css" title="fontproperty">');
}



