function SetEventSD(SCD,DAT,BUS) {  document.cookie = "Schedule=" + SCD + "; path=/";  document.cookie = "Date=" + DAT + "; path=/";  document.cookie = "Bus=" + escape(BUS) + "; path=/";}function GetBus(){  ThisName = "Bus=";  GetCookie = document.cookie + ";";  Start = GetCookie.indexOf(ThisName);  if(Start != -1) {    End = GetCookie.indexOf(";", Start);    var Bus = unescape(GetCookie.substring(Start + ThisName.length, End));  }//  return Bus + '<input type="hidden" name="Bus" value="' + Bus + '">';//  if ( Bus !=  'undefined' && Bus != '') {  if ( Bus == 'bus') {    return '<input type="hidden" name="Bus" value="' + Bus + '">';  }  else {  	return '<!--Bus-->';  }}function SetSD(SCD,DAT,CMP) {  document.cookie = "Schedule=" + SCD + "; path=/";  document.cookie = "Date=" + DAT + "; path=/";  document.cookie = "Campus=" + escape(CMP) + "; path=/";}function GetCampus(){  ThisName = "Campus=";  GetCookie = document.cookie + ";";  Start = GetCookie.indexOf(ThisName);  if(Start != -1) {    End = GetCookie.indexOf(";", Start);    var Campus = unescape(GetCookie.substring(Start + ThisName.length, End));  }  return Campus + '<input type="hidden" name="Campus" value="' + Campus + '">';}function GetSchedule(){  ThisName = "Schedule=";  GetCookie = document.cookie + ";";  Start = GetCookie.indexOf(ThisName);  if(Start != -1) {    End = GetCookie.indexOf(";", Start);    var Schedule = unescape(GetCookie.substring(Start + ThisName.length, End));  }  return Schedule + '<input type="hidden" name="time" value="' + Schedule + '">';}function GetDate(){  ThisName = "Date=";  GetCookie = document.cookie + ";";  Start = GetCookie.indexOf(ThisName);  if(Start != -1) {    End = GetCookie.indexOf(";", Start);    var Date = unescape(GetCookie.substring(Start + ThisName.length, End));  }  return Date + '<input type="hidden" name="date" value="' + Date + '">';}function ZipSearchOpen(){  var target = 'http://www.sanko.ac.jp/cgi-bin/mail_form/zip_search.cgi?zip_search=' + document.form.zip1.value + document.form.zip2.value;  var SWA;  SWA = window.open(target,"zipresult","WIDTH=450,HEIGHT=300,toolbar=no,location=no,status=no,menubar=no,directories=no,scrollbars=yes");  SWA.focus();}