
function findMap(){
       var formtest = true;

       if (document.postCode.Text1.value==""){alert("Please enter a Post Code");formtest= false;}
               
       else{ 
               var pstCd = document.postCode.Text1.value;
               var map = ("http://uk.multimap.com/p/browse.cgi?pc="+pstCd);
               //alert(map);
               window.location.href = map;
               //window.open(map,'mapwindow');
               }
       return (formtest);      
       }
       
       function mailme(form){
  document.location.href=("mailto:" + form.T1.value + "?subject=A useful website&body=I just found this Somerset Web Site at http://www.somersetgateway.com, and I thought you might find it useful.")
  }
  function noWay(){
  alert('You cannot press return to send the message. Click on the Send button instead.');
  return false;
  }
 
