﻿/*
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.okazaki.aichi.jp/search";  //http://www.google.co.jp/search
  theform.submit();
}

