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=25 bgcolor=#d5d9e5><span class=comm_js_title>     From: "+userList[i]+"          </span></td></tr><tr><td bgcolor=#ffffff><span class=comm_js_content>  "+conList[i]+"<br><br></span></td></tr></table>";
	}
	document.getElementById('commentinfoDiv').innerHTML = str;
}