/**
 * @extends SyqComponent
 */
function SyqComponent_substatus()
{
	this.subButtonClose_click = function()
	{
		showMainShadow(false);	
		hideSubForm();
		this.q('#subLoading').show();
	}
	this.closeTop_click = function()
	{
		showMainShadow(false);	
		hideSubForm();
		this.q('#subLoading').show();
	}
	this.subButton_click = function()
	{
		//showSubForm();
		showMainShadow(true);
		this.q('#subMsgForm').show();
		this.q('#subMsgForm').center();
		this.q('#subResultMsg').text(' ');
	}	
};
SyqComponent_substatus.prototype = new SyqComponent;

