/* -----------------------------------------------
   Explorer Object Starter - v.1
   (c) 2007 http://www.haan.net
   jeroen@haan.net
   You may use this script but please leave the credits on top intact.
   Please inform us of any improvements made.
   When useful, we will add your credits.
  ------------------------------------------------ */

// fixes the Internet Explorer ActiveX update 912812 which prevents third party plugins from running automatically


window.onload = function() 
{
  Tinka(); 
  fixWmp(); 
}
  
function fixWmp() 
{
  objects = document.getElementsByName("Garsui");
   
  for ( var i=0; i<objects.length; i++ )
  {
    objects[i].outerHTML = objects[i].outerHTML;
  }
}

