/*****************************************************************************************************/
/*                                                                                                   */
/*                                      'ALERTS' CONTROL PANEL                                       */          
/*                                                                                                   */
/*****************************************************************************************************/

var AlertsObject = new Object();


function initAlertsPanel(){
	AlertsObject.info = new ALERTS_GINFO(this);
	
	//portfolio 'CREATE'
	if (document.forms['alerts_form'] != null){
		AlertsObject.createInfo = init_AlertsGeneralInfo;
		AlertsObject.createInfo();
	}
}


/*****************************************************************************************************/
/*                                                                                                   */
/*                          FUNCTION INITIALIZE GENERAL INFORMATION                                  */          
/*                                                                                                   */
/*****************************************************************************************************/
function init_AlertsGeneralInfo(){
	this.info.initCreate();
}



/*****************************************************************************************************/
/*                                                                                                   */
/*                                         FUNCTION VALIDATION                                       */          
/*                                                                                                   */
/*****************************************************************************************************/
function validateAlerts(){
	if (AlertsObject != null){
		AlertsObject.info.validate();
	}
}


