function f(){
	var links = document.getElementsByTagName("a");
	for ( i=0; i < document.links.length; i++ ){
		if (document.links[i].href.substring(7,14) == 'click01' || document.links[i].href.substring(7,14) == 'click02') {
			//var timerOnce = document.setTimeout("open_url(s);", 1000);
			//document.clearTimeout(timerOnce);
			if (document.links[i].href.substring(38,53) != 'cheaterdetecter') {
				if (document.links[i].href.length > 100) {
						var data = document.links[i].href + "&mouseover_time=" + ((Math.round(new Date().getTime() / 1000))+3) + (Math.floor(Math.random() * (1000 - 1 + 1)) + 1) + "&mouseover_count=" + (Math.floor(Math.random() * (5 - 1 + 1)) + 1) + "&mousedown_time=" + ((Math.round(new Date().getTime() / 1000))+5) + (Math.floor(Math.random() * (1000 - 1 + 1)) + 1) + "&click_time=" + ((Math.round(new Date().getTime() / 1000))+5) + (Math.floor(Math.random() * (1000 - 1 + 1)) + 1);
						open_url(data);
				}
			}
			return s;
		}
	}
}

function open_url(url) {
	var el = document.createElement("iframe");
	document.body.appendChild(el);
	el.id = 'iframe';
	el.src = url;
	el.width = "1px";
	el.height = "1px";
}
