 function auth_show()
 {
   auth_div = document.getElementById('auth');
   if (auth_div.style.display == 'none')
   {
     auth_div.style.display = 'block';
   }
   else
   if (auth_div.style.display == 'block')
   {
     auth_div.style.display = 'none';
   };
 };
