function active061222(){
var sendMax = 5;

var AURL = new Array();
AURL[0] = "http://www.infocart.jp/t/40565/ogaty/ ";
AURL[1] = "http://www.infotop.jp/click.php?aid=5474&iid=32498";
AURL[2] = "http://hb.afl.rakuten.co.jp/hgc/0a9de997.54f845da.0a9de998.bb802695/?pc=http%3a%2f%2fitem.rakuten.co.jp%2fpuerariaplaza%2fs-co-m%2f&m=http%3a%2f%2fm.rakuten.co.jp%2fpuerariaplaza%2fi%2f10000042%2f";
AURL[3] = "http://www.amazon.co.jp/gp/product/B002KFYYRS?ie=UTF8&tag=cozy02-22&linkCode=as2&camp=247&creative=1211&creativeASIN=B002KFYYRS";



var PROBA = new Array();
PROBA[0] = 10;
PROBA[1] = 10;
PROBA[2] = 20;
PROBA[3] = 20;


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();
