function showThreadRow(pId)	{
	//alert("showing " + pId + " now");
	
	var arrCells = document.getElementsByTagName("div");
	for(var x=0;x<arrCells.length;x++)	{
		var strName = arrCells[x].id!=null?arrCells[x].id:"";
		//alert(arrCells[x].innerHTML)
		if(strName.indexOf('postBody_')!=-1)	{
			arrCells[x].style.display = 'none';
			//arrCells[x].parent.style.border = 'none'
			//alert("hiding " + strName);
		}
	}
	
	for(var x=0;x<arrCells.length;x++)	{
		var strName = arrCells[x].id!=null?arrCells[x].id:"";
		if(strName=='postBody_'+pId)	{
			arrCells[x].style.display = 'inline';
			//arrCells[x].parent.style.border = '1px solid #c0c0c0;'
			//alert("showing " + strName);
		}
	}
	
	//alert('done');
	
}
