//
// fix for IE Flash issue where movie isn't active until the user clicks
// on it once. See the following URL's for more info...
//   http://www.mix-fx.com/flash-prompt.htm
//   http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/overview/activating_activex.asp
//   http://www.adobe.com/devnet/activecontent/articles/devletter.html
//
// to use this fix, place a script element with this file as its "src" anywhere below the 
// object tags for the Flash movie on a template.
//
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
  theObjects[i].outerHTML = theObjects[i].outerHTML;
}

