<!--
function getTable(obj)
{
  obj = obj.parentNode;
  while(obj.tagName != 'TABLE')
    obj = obj.parentNode;
  return obj;
}
//-->