﻿// JScript File to disable the enter key on find nearest location


function disableEnterKey(e)
{
     var key;

     if(window.event)
          key = window.event.keyCode;     //IE
     else
          key = e.which;     //firefox

     if(key == 13)
          {
          alert("Press the search button to locate your nearest branch");
          return false;
          }
     else
          return true;
          
}



