<!--
function toggleThread(rowId){
 var row=document.getElementById("thread_"+rowId);
 var image=document.getElementById("img_"+rowId);
 if (image.src == "http://mathforum.org/mathtools/images/down.gif") {
  image.src = "http://mathforum.org/mathtools/images/right.gif";
  row.style.display = "none";
 } else {
  image.src = "http://mathforum.org/mathtools/images/down.gif";
  row.style.display = "";
 }
}
-->

