bobCountTopicView = {};

//Cont a topic view
function countTopicView(topicId,topic_view_url)
{
	topicIdString = String(topicId);
		
	if((bobCountTopicView == {}) || (!bobCountTopicView[topicIdString])){
		
		$.ajax({
				type: 'POST',
				dataType:'html',
				url: topic_view_url,
				async: false,
				data: 'id='+topicId,
				success: function(res){
								
				}
	
			});
		
		bobCountTopicView[topicIdString]=true;
	
	}


}