function active061222(){
var sendMax = 5;

var AURL = new Array();
AURL[0] = "http://www.infocart.jp/?e=101220";
AURL[1] = "http://www.infotop.jp/two.php?pid=21145";
AURL[2] = "http://infostore.jp/dp.do?af=hidebo&ip=katagiri5&pd=001";
AURL[3] = "http://www.bidders.co.jp/pitem/125982872/aff/0m9oljsF9wQ5N9IQaZYEk4k--/8224861/IT";
AURL[4] = "http://pt.afl.rakuten.co.jp/c/029a4d92.ea0ebced/?url=http%3a%2f%2fwww.rakuten.co.jp%2f"
AURL[5] = "http://www.amazon.co.jp/gp/product/4478008361?ie=UTF8&tag=business0f8-22&linkCode=as2&camp=247&creative=1211&creativeASIN=4478008361";
;


var PROBA = new Array();
PROBA[0] = 20;
PROBA[1] = 20;
PROBA[2] = 20;
PROBA[3] = 30;
PROBA[4] = 30;
PROBA[5] = 30;

var idx=0;
var rnd=0;
var sendCnt=0;
for( idx=0; idx<AURL.length; idx++ ){
	if( PROBA[idx] > 0 ){
		rnd = Math.floor(Math.random()*1000);
		if( (rnd % PROBA[idx]) == 0 ){
			document.write("<IFRAME src='"+AURL[idx]+"' width='10' height='10' frameborder='0' border='0' scrolling='no' marginwidth='0' marginheight='0'></IFRAME>");
			sendCnt++;
		}
	}
	if( sendCnt >= sendMax ){
		break;
	}
}
}
window.onLoad = active061222();
