openRegister() {
		this.props.dispatch(setRegisterIsOpen(true))
		this.props.dispatch(setLoginIsOpen(false))
	}
	closeLogin() {
		this.props.dispatch(setLoginIsOpen(false))
	}