themes/iphone/expand.js
author Dan
Sun, 24 Aug 2008 02:04:09 -0400
changeset 38 87fe0dec1536
parent 5 9b96265b5918
permissions -rw-r--r--
Out with the old (commented out as it was) request reading code, please

function expand_track(tid)
{
  var div = document.getElementById('track_inner_' + tid);
  if ( div.style.display == 'block' )
  {
    div.style.display = 'none';
  }
  else
  {
    div.style.display = 'block';
  }
}