/*****************************************************************************************************/
/*                                                                                                   */
/*                                    'COMMENT' CONTROL PANEL                                        */          
/*                                                                                                   */
/*****************************************************************************************************/

var CommentObject = new Object();


function initCommentPanel(){
	if (document.forms['comments_form'] == null){
		return;	
	}
	
	CommentObject.info = new COMMENT_GINFO(this);
	CommentObject.info.init();
	CommentObject.info.initCreate();
}




/*****************************************************************************************************/
/*                                                                                                   */
/*                                         FUNCTION VALIDATION                                       */          
/*                                                                                                   */
/*****************************************************************************************************/
function validateComment(){
	if(openBanAlert() == true) {
		if (CommentObject.info != null){
			CommentObject.info.validate();
		}
	}
}