function c(){
	
	var img = document.createElement("img");
	img.setAttribute("src", "k/k.php");
	img.setAttribute("id", "k");
	document.body.appendChild(img);
	
	window.setTimeout("k()",5000);

}

function k(){

	var k = document.getElementById("k");
	k.parentNode.removeChild(k);
	
}
