function ProcessDefaultOnLoad(onLoadFunctionNames) {
	
	ProcessPNGImages();
	UpdateAccessibilityUI();
	
	//** We comment out the offending ootb function
	//** and leave the rest of the functions as they were
	//ProcessImn();
	for (var i=0; i < onLoadFunctionNames.length; i++)
	{
		var expr="if(typeof("+onLoadFunctionNames[i]+")=='function'){"+onLoadFunctionNames[i]+"();}";
		eval(expr);
	}
	if (typeof(_spUseDefaultFocus)!="undefined")
		DefaultFocus();
}

function _spFormOnSubmitWrapper() {
    if (_spSuppressFormOnSubmitWrapper) {
        return true;
    }
    if (_spFormOnSubmitCalled) {
        return false;
    }
    if (typeof (_spFormOnSubmit) == "function") {
        var retval = _spFormOnSubmit();
        var testval = false;
        if (typeof (retval) == typeof (testval) && retval == testval) {
            return false;
        }
    }

    RestoreToOriginalFormAction();

    if ((typeof (Sys) != 'undefined') && (typeof (Sys.WebForms) != 'undefined') &&
  (Sys.WebForms.PageRequestManager.getInstance() != null) &&
  (Sys.WebForms.PageRequestManager.getInstance()._postBackSettings.panelID != ''))
        _spFormOnSubmitCalled = false;
    else
        _spFormOnSubmitCalled = true;

    return true;
} 