function verify_password() {
	if (Login.uName.value.length < 3) {alert('用户名不能为空或少于三个字符！'); return false;}
	if (Login.uPass.value.length < 5) {alert('密码不能为空或少于五个字符！'); return false;}
	var pw = new jmPass(); pw.Text = Login.uPass.value;
	Login.uPass.value = pw.Encryption(); pw = null;
}

function going(x, y) {
	Point.action = y ? 'list.php' : 'more.php';
	Point.ID.value = x; Point.submit();
}
