// Fix for IE update where EMBEDs and OBJECTs need to be clicked on to activate.
// This code enables all EMBEDs and OBJECTs so that the user doesn't have to 
// click the control to start it.
theObjects = document.getElementsByTagName("object"); 

for (var i=0; i<theObjects.length; i++) { 
	theObjects[i].outerHTML = theObjects[i].outerHTML; 
}