﻿// ランダム広告
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://im.globalife.co.jp/RD/pt/17790/in/3428.html" target="_blank"><img src="http://im.globalife.co.jp/IMG/pt/17790/in/3428.gif" width="120" height="600" border="0" alt="click!"></a>';
hit[1] = 1; adv[1] = '<a href="http://im.globalife.co.jp/RD/pt/17790/in/3593.html" target="_blank"><img src="http://im.globalife.co.jp/IMG/pt/17790/in/3593.gif" width="160" height="600" border="0" alt="click!"></a>';
hit[2] = 1; adv[2] = '<a href="http://im.globalife.co.jp/RD/pt/17790/in/3634.html" target="_blank"><img src="http://im.globalife.co.jp/IMG/pt/17790/in/3634.gif" width="120" height="600" border="0" alt="click!"></a>';
hit[3] = 1; adv[3] = '<a href="http://im.globalife.co.jp/RD/pt/17790/in/3009.html" target="_blank"><img src="http://im.globalife.co.jp/IMG/pt/17790/in/3009.gif" width="120" height="600" border="0" alt="click!"></a>';
hit[4] = 1; adv[4] = '<a href="http://www.angel-live.com/?G0105" target="_blank"><img src="http://www.ff.iij4u.or.jp/~angel3/live/120x600_01.jpg" width="120" height="600" border="0" alt="アダルト ライブチャットエンジェルライブ"></a>';
hit[5] = 1; adv[5] = '<a href="http://im.globalife.co.jp/RD/pt/17790/in/3527.html" target="_blank"><img src="http://im.globalife.co.jp/IMG/pt/17790/in/3527.gif" width="150" height="600" border="0" alt="click!"></a>';

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);
}