﻿/*
googleカスタム検索、静的出力ではVIEWSTATEの行を消します。
*/

function doSearch() {
  var theform;
  if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
   theform = document.getElementById("Form1");  
  }else {
   theform = document.forms["Form1"];
  }
  theform.__VIEWSTATE.value = "";
  theform.method = "GET";
  theform.encoding = "application/x-www-form-urlencoded";
  theform.action = "http://gms.pref.tottori.lg.jp/search?";
  theform.submit();
}

