function showdiv(divID)
{
  targetdiv =  document.getElementById(divID);

  targetdiv.style.visibility = (targetdiv.style.visibility == 'visible' ? 'hidden' : 'visible');
  targetdiv.style.display = (targetdiv.style.display == 'block' ? 'none' : 'block');
}

