///////////////////////////////////////////////////////////////////////////////
// Cookie の読み込み
//function GetCookie(key,  tmp1, tmp2, xx1, xx2, xx3)
function GetCookie(key)
{
	var	tmp1, tmp2, xx1, xx2, xx3;

	tmp1 = " " + document.cookie + ";";
	xx1 = xx2 = 0;
	len = tmp1.length;
	while (xx1 < len)
	{
		xx2 = tmp1.indexOf(";", xx1);
		tmp2 = tmp1.substring(xx1 + 1, xx2);
		xx3 = tmp2.indexOf("=");
		if(tmp2.substring(0, xx3) == key) return(unescape(tmp2.substring(xx3 + 1, xx2 - xx1 - 1)));
        xx1 = xx2 + 1;
    }
//	window.alert("getCookie");
    return("");
}
///////////////////////////////////////////////////////////////////////////////
// Cookie への保存
function SetCookie(key, val)
{
	var tmp;
	tmp = key + "=" + escape(val) + "; ";
	tmp += "expires=Fri, 31-Dec-2030 23:59:59; ";
	document.cookie = tmp;
}
///////////////////////////////////////////////////////////////////////////////
// Cookie への保存 （ブラウザを閉じれば消えるクッキー）
function SetCookieThisBrowser(key, val)
{
	var tmp;
	tmp = key + "=" + escape(val) + "; ";
	document.cookie = tmp;
}

///////////////////////////////////////////////////////////////////////////////
// Cookie の消去
function ClearCookie(key)
{
	document.cookie = key + "=" + "xx; expires=1-Jan-1980 00:00:00;";
}

