
//IE Flash Fix *******************************************
theObjects = document.getElementsByTagName("object");
var ie_flash_fix_code;
for (var i = 0; i < theObjects.length; i++) {
    ie_flash_fix_code=theObjects[i].outerHTML;
    ie_flash_fix_code=ie_flash_fix_code.indexOf('.swf');
    if (ie_flash_fix_code!=-1)
        theObjects[i].outerHTML = theObjects[i].outerHTML;
	//alert("item "+theObjects[i].outerHTML);
}
//********************************************************

