function doSubmitmap() {
  var target1 = '/search2/';
  var supertarget = target1;
  var theForm=document.getElementById("searchform");
  theForm.action = supertarget;
  theForm.submit();
}

function doSubmitlist() {
  var target2 = '/search/';
  var supertarget1 = target2;
  var theForm=document.getElementById("searchform");
  theForm.action = supertarget1;
  theForm.submit();
}

