var user = new Object;

user.register = function () {
	popup.show({ contentType:3, title: '注册新用户', content: '对不起，系统注册暂时未开放', width:300, height:100 });
	return false;
}

user.login = function () {
	popup.show({ contentType:1, title: '登陆', content: URL_PRE + 'user/login', width:300, height:180 });
	return false;
}

