﻿/*
google mini検索
*/

function doSearch() {
  var theform;
  if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
   theform = document.Form1;  
  }else {
   theform = document.forms["Form1"];
  }
/*
  theform.__VIEWSTATE.value = "";
*/
  theform.method = "GET";
  theform.encoding = "application/x-www-form-urlencoded";
  theform.action = "http://search.city.urayasu.chiba.jp/search";
  theform.submit();
}

