// random
jmp = new Array();
img = new Array();

// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "/move/index.php?name=headbnr";

// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "http://www.affiliate-b.com/upload_image/1217-1257307764-3.gif";

n = Math.floor(Math.random()*jmp.length);
document.write("<a href='"+jmp[n]+"' target='_blank'>");
document.write("<img src='"+img[n]+"' width='468' height='60' alt='' />");
document.write("</a>");
