// JavaScript Document


	theName = "notFirst=";
	theCookie = document.cookie+";"
	start = theCookie.indexOf(theName);
	if (start != -1){
		location.href='http://46manbaken.seesaa.net/';	//ここに二回目以降のアクセス時にジャンプさせるページを指定してください（URLでもファイルの相対パスでもOK）
	}else{
		window.onbeforeunload = function (e) {
			window.opener= self;
			//閉じようとしたときのメッセージ
			alert('このページを閉じると二度と開けなくなります。'+"\n"+'キャンセルしたい場合はOKをクリックしたあとに表示されるダイアログで「キャンセル」をクリックしてください');
			//
 			return '二度と開けなくなります。';
		}
		window.onunload = function (e) {
			setDay = new Date();
			setDay.setTime(setDay.getTime()+(1000*1000*60*60*24));
			expDay = setDay.toGMTString();
			document.cookie = "notFirst=true;expires="+expDay;
		}
	}

