/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*  Author:	Sjors van Leeuwen
*  (c) Copyright 1999-2008 Starsale BV, Enschede, The Netherlands
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
function flashfix() {
	if(document.body) {
		theObjects = document.getElementsByTagName("object");
		for(var i = 0; i < theObjects.length; i++) {
			theObjects[i].outerHTML = theObjects[i].outerHTML;
		}
	}
}
if (document.all) {
	window.attachEvent("onload", flashfix);
}