var kazu = 5; // データ数
var hyouji = 4; // 表示データ数
hako = new Array(kazu);
for (i=0;i<=kazu;i++) {hako[i]=0;} // チェックフラグ初期化

// random
jmp = new Array();
anc = new Array();
text = new Array();
url = new Array();
imp = new Array();

// to link
jmp[0] = "/h/redirect/index.php?id=kanagawa";
jmp[1] = "/h/redirect/index.php?id=matsubara";
jmp[2] = "/lasik/kobeclinic/redirect/index.php?id=kobeclinic";
jmp[3] = "/h/redirect/index.php?id=kato";
jmp[4] = "/lasik/kinshi-ganka/redirect/index.php?id=kinshi";
//jmp[5] = "/h/redirect/index.php?id=tajiri";


// anchor text
anc[0] = "神奈川クリニック眼科";
anc[1] = "レーシック　眼科松原クリニック";
anc[2] = "神戸クリニック《公式サイト》";
anc[3] = "加藤眼科レーシックセンター";
anc[4] = "錦糸眼科（公式サイト）";
//anc[5] = "レーシックで視力回復治療　たじり眼科";


// text
text[0] = "CRレーシックが9.8万円！ 視力1.0以上に99.6％が回復";
text[1] = "見える！ レーシックで近視を治す！";
text[2] = "動画で分かる「神戸クリニック」のiLASIK手術の流れ";
text[3] = "実績ある眼科専門医による安心のレーシック";
text[4] = "イントラレーシック手術／近視・乱視・遠視治療で１８年の実績！";
//text[5] = "１２／１から　ウィンターキャンペーン￥98,000ポッキリ価格！";


// url
url[0] = "ganka.kanacli.net";
url[1] = "www.mieru-mieru.com";
url[2] = "www.kobeclinic.com";
url[3] = "www.katolasik.com/";
url[4] = "www.kinshi.or.jp";
//url[5] = "www.tajiriganka.jp";


//imp
imp[0] = "";
imp[1] = "http://www.accesstrade.net/at/r.html?rk=01001yjv00358u";
imp[2] = "http://track.affiliate-b.com/lead/T1691z/b21335B/751568q";
imp[3] = "http://www.accesstrade.net/at/r.html?rk=0100139z00358u";
//imp[4] = "";
//imp[5] = "http://track.affiliate-b.com/lead/8827U/b21335B/e118596";


if(hyouji<=kazu) {
for (i=1;i<=hyouji;i++) {
do {
var rand = Math.floor(Math.random()*kazu); 
}
while ( 0<hako[rand] );
//n = Math.floor(Math.random()*jmp.length);
document.write("<p class='ads'><a href='"+jmp[rand]+"' target='_blank'><span class='adsLink'>");
document.write(""+anc[rand]+"");
document.write("</span><br />");
document.write("<span class='adsTedt'>"+text[rand]+"</span><br />");
document.write("<span class='adsUrl'>"+url[rand]+"</span>");
document.write("</a><img src='"+imp[rand]+"' width='1' height='1' alt='' /></p>");
hako[rand]=+1;
}
}