/*******************************
* Initialize Comments Module
*******************************/
function initCommentLink(strAddOnclickId,strShowId,strHideId) {
	var oLink = document.getElementById(strAddOnclickId);
	if(oLink) {
	oLink.onclick = function() {
		showHide(strShowId,strHideId); return false;
	}	
}
}

addLoadEvent(function() {

initCommentLink('commentsButtonForgot','commentsPasswordForm','commentsLoginForm');
initCommentLink('commentsButtonLoginBack','commentsLoginForm','commentsPasswordForm');

});
