<!--
	LoginName = getCookieURI("LoginName");
	LoginLastDate = getCookieURI("LoginLastDate");
	LoginLastTime = getCookieURI("LoginLastTime");

	if(LoginName != "")
	{
		document.write("こんにちは" + LoginName + "さん　"); 
		document.write('<a href="/system/logout.htm" target="_top">ログアウト</a>'); 
//		document.write("前回ログイン" + "　" + LoginLastDate + "　" + LoginLastTime+ "　"); 

	}
	else
	{
		document.write("こんにちは" + "ゲスト" + "さん　"); 
		document.write('<a href="/system/login.htm" target="_top">ログイン(新規会員登録)</a>'); 
	}
//-->
