/*
** This overrides the ProcessDefaultOnLoad() sharepoint function which contains a function call to ProcessImn() which loads the offending activex object.
** See http://support.microsoft.com/default.aspx/kb/931509 for info on the issue.
** This file must be referenced in the Master Page AFTER the tag <asp:ContentPlaceHolder id="PlaceHolderAdditionalPageHead" runat="server"/>.
*/
function ProcessDefaultOnLoad(onLoadFunctionNames)
{		
   ProcessPNGImages();
   UpdateAccessibilityUI();
   //ProcessImn();  //** Comment out the offending function **//
   for (var i=0; i < onLoadFunctionNames.length; i++)
   {
      var expr="if(typeof("+onLoadFunctionNames[i]+")=='function'){"+onLoadFunctionNames[i]+"();}";
      eval(expr);
   }
   if (typeof(_spUseDefaultFocus)!="undefined")
      DefaultFocus();
}	