/*****************************************************************************************************/
/*                                                                                                   */
/*                                      'COMMENTS' CONTROL PANEL                                     */          
/*                                                                                                   */
/*****************************************************************************************************/
var CommentsObject = new Object();


function initCommentsPanel(){
	if (document.forms['comments_form'] == null){
		return;	
	}
	
	CommentsObject.info = new COMMENTS_GINFO(this);
	CommentsObject.info.init();
	CommentsObject.info.initCreate();
}


/*****************************************************************************************************/
/*                                                                                                   */
/*                                         FUNCTION VALIDATION                                       */          
/*                                                                                                   */
/*****************************************************************************************************/
function validateComments(){
	if (CommentsObject != null){
		CommentsObject.info.validate();
	}
}



