/* visitors.js */
function getHole( hole )
{
   http.open('get', '/holes.php?h=' + hole );
   http.onreadystatechange = handleResponse;
   http.send(null);
}

function unsubscribeMe()
{
   mMail = document.getElementById("mMail");
   if ( mMail.value == "" )
   {
      alert( "Please enter your email address to unsubscribe" );
      mMail.focus();
      return false;
   }

   document.getElementById("mlunsubscribe").submit();
}
