// JavaScript Document

// ログアウト後および未ログイン者訪問時遷移先
//alert(location.href);
//document.write('<META HTTP-EQUIV="REFRESH" CONTENT="0;URL=http://www.jfa.or.jp/portal/index.php?a=login">');


	document.write('<html>');
	document.write('<body>');
	document.write('<form name="main" action="xxxx" method="post">');
	document.write('<input type="hidden" name="servicecode" value="JfaForum" />');
	document.write('<input type="hidden" name="url" value="'+location.href+'" />');
	document.write('</form>');
	document.write('</body>');
	document.write('</html>');

	document.main.action = "https://www.jfa.or.jp/portal/index.php?a=login";
	document.main.submit();


