if (typeof ADMIN == 'undefined') {
    var ADMIN = {};
}

if (typeof ADMIN.widget == 'undefined') {
    ADMIN.widget = {};
}

ADMIN.widget.SubmitButton = function (id, show_processing_throbber)
{
	ADMIN.widget.SubmitButton.superclass.constructor.call(this, id,
	    show_processing_throbber);

    var throbber = YAHOO.util.Dom.getElementsByClassName('swat-button-processing-throbber')[0];

    throbber.style.display = "none";

	YAHOO.util.Event.addListener(this.button, 'click',
		function() {
            throbber.style.display = "inline";

		    document.getElementById(this.id + '_cancel').style.display = 'none';
		}, this, true);
}

YAHOO.lang.extend(ADMIN.widget.SubmitButton, SwatButton);

