/*
   Script for access to the archive of GHAE
*/

var access = {

set:function()
{
  var style = document.getElementById('enter').style;

  style.visibility = 'hidden';

  style.left = '300px';
  style.top  = '228px';
},

show:function()
{
  document.getElementById('enter').style.visibility = 'visible';
},

hide:function()
{
  document.getElementById('enter').style.visibility = 'hidden';
}
}

