function delaypub(divId, iframeUrl, width, height) {
	document.write('<div id="'+divId+'" style="width:'+width+'px; height:'+height+'px"></div>');
	var funcName = 'delaypub_'+divId;
	eval(funcName+' = function() { document.getElementById(divId).innerHTML = \'<iframe allowtransparency="true" src="'+iframeUrl+'" width="'+width+'" height="'+height+'" frameborder="0" scrolling="no"></iframe>\';}');
	eval('delayedFunction='+funcName);
	if (window.addEventListener)
		window.addEventListener("load", delayedFunction, false);
	else if (window.attachEvent)
		window.attachEvent("onload", delayedFunction);
	else
		window.onload = delayedFunction;
}

