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);
	    
    if (show_processing_throbber) {
        this.throbber_container.style.display = 'none';
    }

	YAHOO.util.Event.addListener(this.button, 'click',
		function() {
		    document.getElementById(this.id + '_cancel').style.display = 'none';

            if (this.show_processing_throbber) {
                this.throbber_container.style.display = 'inline';
            }
		}, 
        this, 
        true
    );
}

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

