// when browser is loaded, flash objects will not work until we click on it in xp and sp2
// this script will fix this ie problem

theObjects = document.getElementsByTagName("object"); 
for (var i = 0; i < theObjects.length; i++) { 
	theObjects[i].outerHTML = theObjects[i].outerHTML; 
}