
	if( document.all ){
		theObjects = document.getElementsByTagName("object");
		for (var i = 0; i < theObjects.length; i++) {
			theObjects[i].outerHTML = theObjects[i].outerHTML;
		}
	}
/*
function objBejar(){
	if( document.all ){
		theObjects = document.getElementsByTagName("object");
		for (var i = 0; i < theObjects.length; i++) {
			theObjects[i].outerHTML = theObjects[i].outerHTML;
		}
	}
}

if ( typeof window.onload == "function"  ) {
	oldOnLoad = window.onload;
	window.onload = function() {
		try { oldOnLoad; } catch ( ex ) {}
		objBejar();
	}
} else {
	window.onload = function() { 
		objBejar();
	}
}
*/
