function func_PatchIE()
{
	var obj = document.getElementsByTagName("body");
	
	if (obj)
	{
		obj[0].onload = function()
		{
			theObjects = document.getElementsByTagName("object");
			
			var i;
			
			for (i = 0; i < theObjects.length; i++)
				theObjects[i].outerHTML = theObjects[i].outerHTML; 
		}
	}
}