var branch_wait = 800; //次ページに移動するまでの待ち時間。5000=5秒。

function branch() {
  /* IE用のDHTML対応ページへ飛ぶ。IE4.0以上 */
  if(document.all) {
   location.href = "http://www.phages-net.com/index.htm";
  }

  /* Netscape用のDHTML対応ページへ飛ぶ。NN4.0 */
  else if(document.layers)  {
   location.href = "http://www.phages-net.com/i/";
  }
 
  /* DreamPassport対応ページへ飛ぶ。DP2.0以上 */
  else if(navigator.userAgent.indexOf("DreamPassport") != -1 ) {
   location.href = "http://www.phages-net.com/i/";
  }

  /* その他ブラウザ用ページへ飛ぶ。IE3.0以上/NN2.0以上他 */
  else {
   location.href = "http://www.phages-net.com/i/";
  }
}