// ランダムに画像を表示する
var tag ='';

tag= new Array();
// ジャンプ先のアドレス(数字は画像と対応)
tag[0] = '<a href="http://daikokucredit.jp/" target="_blank"><img src="http://creditsearch.jp/shop/daikoku/160x600.gif" width="160" height="600"></a>';
//tag[1] = '<a href="http://goemoncredit.jp/" target="_blank"><img src="http://creditsearch.jp/shop/goemon/160x600.gif" width="160" height="600"></a>';
i=Math.floor(Math.random()*tag.length);
document.write(tag[i]);
