function toggle_sub(anchor)
{
  var div = anchor.nextSibling;
  div.style.display = div.style.display == 'block' ? 'none' : 'block';
}
