/*window.onload = function() {
	fixFlash(); 
}*/
function fixFlash() {
	objects = document.getElementsByTagName("object");
	for (var i = 0; i < objects.length; i++) {
		//alert(document.getElementsByTagName("object").name);
		objects[i].outerHTML = objects[i].outerHTML;
	}
}