var TopURL = 'http://www.godtail.com/';
var basket_flg;

//テーブル行の色変更
function change_on(tt) {
	tt.style.backgroundColor='#E1E1F9';
	tt.style.cursor='hand';
}

//テーブル行の色戻す
function change_off(tt) {
	tt.style.backgroundColor='';
}

function Chk() {
	if(top.ecc){
		setCookie();
	}
	
}

function check_form(theform)
{
	myDate = new Date();
	document.forms[theform].TIME.value = myDate.getTime();
	if(basket_flg){
		alert('バスケットが表示されるまで\n暫くお待ちください。');
		return false;
	}
	basket_flg = 1;
	return true;
}

function setCookie(theDay)
{
	if(theDay == null){theDay = 60;}	//保存時間がない場合は１時間
	theDay = eval(theDay);	//　文字列の場合でも数値にする（念のため）
	setDay = new Date();
	setDay.setTime(setDay.getTime()+(theDay*1000*60));
	expDay = setDay.toGMTString();
//	document.cookie = 'GodTail-ID' + "="+ escape(document.URL)+";expires="+expDay+";path=/~godtail/basket";
	document.cookie = 'GodTail-ID' + "="+ escape(document.URL)+";expires="+expDay+";path=/basket";
	return true;
}

