function searchObjByTagName(obj, tag)
{
  while(obj!=null && typeof(obj.tagName) != "undefind")
  {
    if(obj.tagName == tag.toUpperCase()) return(obj);
    obj = obj.parentElement;
  }
  return null;
}var a = document.getElementsByName("hot")
for(var i=0; i<a.length; i++)
{
  if(a[i].checked) searchObjByTagName(a[i], "TR").removeNode(true);
}