	/*****************************/
	/*      JavaScript           */
	/*                           */
	/*  ヒューマンネット株式会社 */
	/*  高野 裕太　              */
	/*  フレーム内のページに直接 */
	/*	アクセスがあった場合、元 */
	/*	のページに移動させる     */
	/*****************************/	
　jump_wait = 2;//ページを移動するまでの秒単位の時間、0なら即移動

if(!parent.framere){
	document.write("This page originally uses the frame.It goes to the frame page.<br>このページは本来フレームを利用しています。<br>フレームのページに移動します。   <br>");
	var param = (location.search!="")? location.search+"&":"?";
	var parent_page = "http://www.futsal-tokyo.co.jp/index.php"+param+"frame="+location.pathname;
	document.write("<a href="+parent_page+">"+parent_page+"</a><br>");
	setTimeout(function(){ location.href=parent_page }, jump_wait*1000);
	
}

