/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*  Author:	Sjors van Leeuwen
*  (c) Copyright 1999-2008 Starsale BV, Enschede, The Netherlands
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* Flash Error Fix For IE */
flashfix = function()
{
	if(document.body)
	{
		var useragent = navigator.userAgent.toLowerCase();
		var IE = useragent.indexOf('msie') > 0 ? true : false;
		if(IE)
		{
			theObjects = document.getElementsByTagName("object");
			for(var i = 0; i < theObjects.length; i++)
			{
				theObjects[i].outerHTML = theObjects[i].outerHTML;
			}
		}
	}
}
if (window.attachEvent)
{
	window.attachEvent("onload", flashfix);
}
else
{
	window.onload=flashfix;
}
