/*****************************************************************************************************/
/*                                                                                                   */
/*                                     'NEWSLETTER BOX' CONTROL PANEL                                */          
/*                                                                                                   */
/*****************************************************************************************************/

var NewsletterBoxObject = new Object();


function initNewsletterBoxPanel(){
	if (document.forms['newsletter_box_form'] == null){
		return;	
	}
	
	NewsletterBoxObject.info = new NEWSLETTER_BOX_GINFO(this);
	NewsletterBoxObject.info.init();
	NewsletterBoxObject.info.initCreate();
}



/*****************************************************************************************************/
/*                                                                                                   */
/*                                         FUNCTION VALIDATION                                       */          
/*                                                                                                   */
/*****************************************************************************************************/
function validateNewsletterBox(){
	if (NewsletterBoxObject.info != null){
		NewsletterBoxObject.info.validate();
	}
}



