var last_id='starter';

function change_visible (id)
{
  if (last_id)
    document.getElementById(last_id).style.display='none';

  if (document.getElementById(id).style.display!='block')
    document.getElementById(id).style.display='block';
  else
    document.getElementById(id).style.display='none';

  last_id=id;
}