var user = new Object;

user.register = function () {
	msgbox('对不起，系统注册暂时未开放', 16);
	common.stop();
}

user.login = function () {
	popup.show({key: 'userLogin', contentType: 3, content: CURR_PRE + 'user/login/inajax,1', title: '用户登陆', height: 100});
	common.stop();

	return;
	var pop=new Popup({ contentType:1, isReloadOnClose:false, width:300, height:180 });
	pop.setContent("title","登陆");
	pop.setContent("contentUrl", URL_PRE + 'user/login');
	pop.build();
	pop.show();
	return false;
}