function showCommentForm(){
	var isLoggedIn=getSessionValue('isLoggedin');
	if(isLoggedIn=='true'){
		document.getElementById('commentsSubmitLogin').style.display='none';
		document.getElementById('commentsSubmitForm').style.display='block';
	}
}
function showCommentViolationForm(){
	var isLoggedIn=getSessionValue('isLoggedin');
	if(isLoggedIn=='true'){
		document.getElementById('commentViolationSubmitLogin').style.display='none';
		document.getElementById('commentViolationSubmitForm').style.display='block';
	}
}