
	fixBorder = function() 
	{
		theObjects = document.getElementsByTagName("object");
		for( i=0; i<theObjects.length; i++ ) 
		{
			try{
				theObjects[i].outerHTML = theObjects[i].outerHTML;
			}
			catch(e) {}
		}
	}
	if( window.attachEvent )
		window.attachEvent("onload", fixBorder);
	else
		window.onload = fixBorder;

