// Writes HTML for banner object - was added after M$ ActiveX fix for IE
function DisplayPirsum(sHTML) {
	document.write(sHTML);
}

// Function will overwrite any html object with itself, used as fix for M$
function RewriteObjectElement(oElement) {
	if (oElement)
		oElement.outerHTML = oElement.outerHTML;
}