// JavaScript Document

function doTheIframe(id, w, h) {
	ifrm = document.createElement("iframe");
	ifrm.setAttribute("name", id);
	ifrm.setAttribute("id", id);
	ifrm.setAttribute("src", "http://www.eladokiadoingatlan.hu/apps/160x375blank.php");
	ifrm.setAttribute("width", w);
	ifrm.setAttribute("height", h);
	ifrm.setAttribute("frameborder", "0");
	ifrm.style.width.value = w+"px";
	ifrm.style.height.value = h+"px";
	ifrm.style.border = "0px none";
	ifrm.style.overflow = "hidden";
	ifrm.style.background = "#ffffff";
	
	document.write('<div id="eki160375ifr"></div>');

	document.getElementById("eki160375ifr").appendChild(ifrm);
}

function EladoKiadoIngatlanHirdetesek() {
	doTheIframe('smallframe',160,375);
}

EladoKiadoIngatlanHirdetesek();
