//**************************************************************************************
//    プログラム名：一般公開用メニュー／cookieの設定
//    作成日：2008/11/01
//    更新日：
//    バージョン：4.0.0
//    リリース日：
//    変更履歴
//      新規作成  :  V/R=4.0.0.00  2008/11/01
//**************************************************************************************
function tempCookie(theName__,theValue__)
{
  if ((theName__ != null) && (theValue__ != null))
  {
    document.cookie = theName__ + "="+theValue__;alert(document.cookie);
    return true;
  }
  return false;
}

function setCookie(theName__, theValue__, theDay__)
{
  if ((theName__ != null) && (theValue__ != null))
  {
    var expDay__ = "Wed, 01 Jan 2020 18:56:35 GMT";
    if (theDay__ != null)
    {
      theDay__ = eval(theDay__);
      var setDay = new Date();
      setDay.setTime(setDay.getTime()+(theDay__*1000*60*60*24));
      expDay__ = setDay.toGMTString();
    }
    document.cookie = theName__ + "="+ escape(theValue__) + ";expires=" + expDay__;
    // return true;
  }
  // return false;
}

function deleteCookie(theName__)
{
  document.cookie = theName__ + "=;expires=Thu,01-Jan-70 00:00:01 GMT";
  return true;
}

function getCookie(theName__)
{
  theName__ += "=";
  theCookie__ = document.cookie+";";
  start__ = theCookie__.indexOf(theName__);
  if (start__ != -1)
  {
    end__ = theCookie__.indexOf(";",start__);
    return unescape(theCookie__.substring(start__+theName__.length,end__));
  }
  return false;
}
