function checkAnons()
{
   var anons = document.getElementById("anons");
   if (anons.style.display=='none')
   {
   	anons.style.display='inline';
   }
   else
   {
   	anons.style.display='none';
   }
    return true;
}