
<!--
// ランダムに画像を表示する
jmp = new Array();
img = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "http://daikoku.ebis.ne.jp/tr_set.php?argument=ewrtkV29&ai=77917";
jmp[1] = "http://www.izuhapi.net/digest/sbc_5/digest.html";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "http://sp.izuhapi.net/common/banner/bnr_3_20090907181003454.gif";
img[1] = "http://sp.izuhapi.net/common/banner/izuhapi/spa2.jpg";
n = Math.floor(Math.random()*jmp.length);
document.write("<A href='"+jmp[n]+"'>");
document.write("<IMG src='"+img[n]+"' border='0'>");
document.write("</A>");
//-->
