<!--
//**********************************************************************
// SUGAMO：判別
//
// 2007.1.15
//**********************************************************************
// 変数：
// 関数：
//**********************************************************************
//=============================================
// setFlashCookie
//=============================================
function setFlashCookie() {
	var theName = "Flash";
	var theDay  = 365;
	var setDay  = new Date();

	setDay.setTime(setDay.getTime()+(theDay*1000*60*60*24));
	expDay = setDay.toGMTString();
	document.cookie = theName + "=F;expires="+expDay;
	location.href = "./index.html";
}
//**********************************************************************
-->