function mailLink() {
  var a = document.getElementById('mailLink0');
  a.innerHTML = "<a href=\"mailto:" +"info" + "&#64;" + "tam" + "uratic.net\">"  +"in" + "fo@" + "tamur" + "atic.net" + "</a>";

  a = document.getElementById('mailLink1');
  a.innerHTML = "<a href=\"mailto:" +"info" + "&#64;" + "tam" + "uratic.net\">"  +"in" + "fo@" + "tamur" + "atic.net" + "</a>";
}

function cssPlus() {
  //IE7.0以上、Firefox、Opera8.0以上、Webkitエンジン
  document.write('<link rel="stylesheet" href="http://tamuratic.net/css/modernbrowser.css" type="text/css" media="screen,tv" />');
}

function checkUA() {
var bi = new BrowserInfo();
  if( bi.firefox ) {
    cssPlus();
  }
  if( bi.ie ) {
    if(( bi.opera )&&( bi.operaVersion >= 8 )) {
      cssPlus();
    } else if ( bi.ieVersion >= 7 ) {
      cssPlus();
    }
  } else if(( bi.opera )&&( bi.operaVersion >= 8 )) {
      cssPlus();
  }
  if( bi.webkit ) {
      cssPlus();
  }
}