

function postComment(responseString){
	
	if(responseString.indexOf("errorMsg") == -1){
	
		$('#commentsList').load('/include/blog/update_comments.php?hash=' + responseString);
		
		document.getElementById('postCommentButton').disabled 	= true;
		document.getElementById('postCommentButton').value 		= 'Thank you for posting!';
		
		document.getElementById('commentInfo').innerHTML 	= '';
		
		document.getElementById('commentForm').reset();
	
	}

}

