
function Keisti(Vardas)
{
  var obj  = document.getElementById(Vardas); 
  var obj2 = document.getElementById(Vardas.substring(3));

  if (obj.style.display == 'none') 
    { obj.style.display = ''; 
      obj2.style.fontWeight = 'bold';
    } 
  else 
    { obj.style.display = 'none'; 
      obj2.style.fontWeight = 'normal';
    } 
}
function Pele()
{
  if (document.body.style.cursor == 'pointer')  
    { document.body.style.cursor = 'auto';  }
  else
    { document.body.style.cursor = 'pointer';  }
}

