function comment_updateCount(count)
{
	try {
		document.getElementById("commentCount").innerHTML = count;
	}catch(e){}
}
function comment_updateCountAll(count,ecount,dcount)
{
	try {
		document.getElementById("commentCount").innerHTML = count;
		document.getElementById("commentAllCount").innerHTML = count;
		document.getElementById("commentEliteCount").innerHTML = ecount;
		document.getElementById("commentDebateCount").innerHTML = dcount;
	}catch(e){}
}
