function zeig(id)
{
  var x = document.getElementById(id);
  x.style.display = (x.style.display == 'block' ? 'none' : 'block');
}//-->
