// random
jmp = new Array();
img = new Array();
txt = new Array();


// jmp
jmp[0] = "/redirect/index.php?id=lens-concier";
//jmp[1] = "/redirect/index.php?id=";


// img address
img[0] = "http://mp4.medipartner.jp/gadserv.php?APID=3513&affID=0000496";
//img[1] = "";


//text
txt[0] = "10,000円（税込）以上で送料無料。安心・便利なレンズコンシェル。";
//txt[1] = "";


n = Math.floor(Math.random()*jmp.length);
document.open();
document.write("<ul class='bnr'><li><a href='"+jmp[n]+"' target='_blank'>");
document.write("<img src='"+img[n]+"' width='300' height='250' alt='' />");
document.write("</a></li>");
document.write("<li>"+txt[n]+"</li></ul>");
document.close();
