function comment_updateCount(count)
{
	try {
		document.getElementById("commentCount").innerHTML = count;
	}catch(e){}
}
function comment_updateCountAll(count,ecount,dcount)
{
	try {
		if(count>0){
			document.getElementById("commentCount").innerHTML = "("+count+")";
			document.getElementById("commentAllCount").innerHTML = "("+count+"Ìõ)";
			document.getElementById("commentAllCountin").innerHTML = "("+count+"Ìõ)";
		}
		if(ecount>0){
			document.getElementById("commentEliteCount").innerHTML = "("+ecount+"Ìõ)";
		}
		if(dcount>0){
			document.getElementById("commentDebateCount").innerHTML = "("+dcount+"Ìõ)";
		}
	}catch(e){}
}
