function getArticleComments(sURL, sCommentsDiv){
	$.get(sURL,
	function(data){
		$("#"+sCommentsDiv).html(data);
	});
			
	// stop redirect to URL
	return false;
}
