function getcommentinfo()
{
	
	if (userList.length<=0 || conList.length<=0)
		return ;
	var str="";
	for (i=0;i<userList.length;i++)
	{
		str += "<TABLE cellSpacing=0 cellPadding=0 border=0 class=comm_js><tr><td  HEIGHT=24 bgcolor=#999999><div align=left><span class=comm_js_title>From :  "+userList[i]+"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Time :"+timeList[i]+"</span></div></td></tr><tr><td bgcolor=#cccccc><div align=left><span class=comm_js_content>  "+conList[i]+"</span></div></td></tr></table>";
	}
	document.getElementById('commentinfoDiv').innerHTML = str;
}
