function s() {
  var rx = /^[\d\w\ ]{1,}$/;
  var keywords = document.getElementById('ly').value;
  if(rx.test(keywords)){window.location.href = "/find/" + keywords;}else{alert("Only use letters and digits!");}
}


