function search(q) {
  q = q.replace(/^\s+/, '').replace(/\s+$/, '');
  document.location = "/search/" + encode(q);
  return false;
}
function encode(param) {
  return encodeURIComponent(param).
      replace(/%20/g, "+").
      replace(/%3A/g, ":");
}
