////////////////////////////////////////////////////////////
//
//ファイル名:   authentication.js
//機能		:	ユーザ認証
//依存		:	main.js
//バージョン:　 2.0.0.1
//更新日時	:　 2006.08.01
//更新者	:	kawame
//
////////////////////////////////////////////////////////////

function AuthenticationManager(gis)
{
	//alert(gis.constructor);

	// ログイン
	this.login = function(userId, password)
	{
		return false;
	}
	
	// ログアウト

	this.logout = function()
	{
		return false;
	}
	
	// パスワード変更
	this.changePassword = function(newPassword)
	{
		return false;
	}
}
