﻿function randomAdv2() {
  m = 0, x = 0, y = 0;
  ad  = new Array();
  adv = new Array();
  hit = new Array();

  // hitには相対確率を入れる
  // 完全にランダムにするなら全部"1"にする
  // advには、広告のタグを入れる。改行はしないようにする
  // 広告を増やしたりする場合は、"[ ]"の数字が0から順になるようにする
  hit[0] = 1; adv[0] = '<a href="http://click.linksynergy.com/fs-bin/click?id=k7dayCX5LPQ&offerid=129779.10000740&type=4&subid=0"><IMG alt="ユニバーサル・スタジオ・ジャパン(R)" border="0" src="http://www.usj.co.jp/affiliate/banner/msp/468_60.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=k7dayCX5LPQ&bids=129779.10000740&type=4&subid=0">';
  hit[1] = 1; adv[1] = '<a href="http://click.linksynergy.com/fs-bin/click?id=k7dayCX5LPQ&offerid=66258.10000191&type=4&subid=0"><IMG alt="TSUTAYA online" border="0" src="http://www.tsutaya.co.jp/affiliate/bnr/tol_calendar_234_60.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=k7dayCX5LPQ&bids=66258.10000191&type=4&subid=0">';
  hit[2] = 1; adv[2] = '<a href="http://click.linksynergy.com/fs-bin/click?id=k7dayCX5LPQ&offerid=100006.10000141&type=4&subid=0"><IMG alt="アウトドア＆フィッシング ナチュラム" border="0" src="http://www.naturum.co.jp/LS/link/season/468_60_4.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=k7dayCX5LPQ&bids=100006.10000141&type=4&subid=0">';
  hit[3] = 1; adv[3] = '<a href="http://click.linksynergy.com/fs-bin/click?id=k7dayCX5LPQ&offerid=39250.10000154&type=4&subid=0"><IMG alt="デル株式会社" border="0" src="http://img.dell.com/images/jp/banners/banners_l/dell_468x60_b1.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=k7dayCX5LPQ&bids=39250.10000154&type=4&subid=0">';
  hit[4] = 1; adv[4] = '<a href="http://click.linksynergy.com/fs-bin/click?id=k7dayCX5LPQ&offerid=143932.10000220&type=4&subid=0"><IMG alt="GOLDWIN WEB STORE" border="0" src="http://goldwinwebstore.jp/shop/u_page/img/HH468_60.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=k7dayCX5LPQ&bids=143932.10000220&type=4&subid=0">';
  hit[5] = 1; adv[5] = '<a href="http://click.linksynergy.com/fs-bin/click?id=k7dayCX5LPQ&offerid=143932.10000205&type=4&subid=0"><IMG alt="GOLDWIN WEB STORE" border="0" src="http://goldwinwebstore.jp/shop/u_page/img/TNF468_60.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=k7dayCX5LPQ&bids=143932.10000205&type=4&subid=0">';

  for(i=0; i<=hit.length - 1; i++) {
    m += hit[i];
  }
  n = Math.floor(Math.random() * m);
  n++;
  for(i=0; i<=hit.length - 1; i++) {
    x = y;
    y += hit[i];
    if(x<n && n<=y) ad = adv[i];
  }
  document.write(ad);
}