function fixObj() {
	if (document.body.outerHTML && (ob = document.getElementsByTagName('object')).length)
	{
		for (var i=ob.length-1; i >= 0; i--)
		{
			ob[i].outerHTML = ob[i].outerHTML;
		}
	}
}