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);
	    
	YAHOO.util.Event.addListener(this.button, 'click',
		function() {
		    document.getElementById(this.id + '_cancel').style.display = 'none';
		}, this, true);
}

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