//<script>
function VerifyData(theForm)
   {
       
         if (theForm.Criteria.value == "")
         {
           alert ("Please enter a Town/City to search for.");
              theForm.Criteria.focus();
           return false;
         }        

     }    
