<!--

   window.onload = attachEvents;

   function attachEvents()
   {
      if (document.getElementById != null)
      {
         var enterImage = document.getElementById("enter");

         if (enterImage != null)
         {
            enterImage.onmouseover = function() { this.style.border = "solid 2px #cccccc"; };
            enterImage.onmouseout = function() { this.style.border = "solid 2px #242424"; };
         }
      }
   }

-->
