function insert()
{
/*
	var w = YAHOO.util.Dom.getDocumentWidth();
	var h = YAHOO.util.Dom.getDocumentHeight();


	var node = document.createElement("div");
	node.style.position = 'absolute';
	node.style.top = '0';
	node.style.left = '0';
	node.style.width = w + 'px';
	node.style.height = h + 'px';

	node.style.backgroundColor = 'white';
	node.style.border = 'solid #f5f5f5 2px';
	node.id = 'interstitial';

	node.innerHTML = '<div onclick="document.getElementById(\'interstitial\').style.display = \'none\'">Close</div><br/><a href="http://rover.ebay.com/rover/1/711-1751-2978-328/1?aid=10369560&pid=1305537" target="_top"><img src="http://www.tqlkg.com/image-1305537-10369560" width="800" height="600" alt="" border="0"/></a>';
	
	document.body.appendChild(node);
*/
}

