function togglevis(id)
{
  e=document.getElementById(id);
  if (!e) return;

  // Hide other divisions
  elist=document.getElementsByTagName('div');
  for (i=0; i<elist.length; i++)
  {
    if (elist[i]!=e) elist[i].className='nomore';
  }

  // Toggle the requested division
  if (e.className=='nomore') e.className='more';
  else e.className='nomore';

  document.body.focus();
}


function humansonly(id, text, link)
{
  element=document.getElementById(id);
  if (element==undefined) return;

  if (text!=null)
  {
    t='';
    for (i in text) t+=String.fromCharCode(152-text[i]);
    element.innerHTML=t;
  }

  if (link!=null && element.href)
  {
    l='';
    for (i in link) l+=String.fromCharCode(152-link[i]);
    element.href=l;
  }
}

