<!--
//-----------------------------------------------------
//クッキーの読み出し関数
function getCookie(nam){
	theItem = document.cookie+";";
	index1 = theItem.indexOf(nam, 0);
	if(index1 != -1){
		theItem = theItem.substring(index1, theItem.length);
		index2 = theItem.indexOf("=", 0)+1;
		index3 = theItem.indexOf(";", index2);
		value = theItem.substring(index2, index3);
		return(value);
	}else{
		return("")
	}
}
//======================================================
//設定値
theName = "TIMES";
theTimes = getCookie("TIMES");
theDay = 0;
//======================================================
//保持期減の設定
if(theDay != 0){
	setDay = new Date();
	setDay.setTime(setDay.getTime()+(theDay*1000*60*60*24));
	expDay = setDay.toGMTString();
}
//カウント設定
if(theTimes != ""){
	theTimes++;
}else{
	theTimes = 1;
}
//クッキーの書き込み
if(theDay != 0){
	document.setCookie = theName+"="+theTimes+";expires="+expDay;
}else{
	document.cookie = theName+"="+theTimes +";";
}
//-----------------------------------------------------
//-->
