function check_pw_input() {
	if ((login.pw.value.length < 2) || (login.pw.value.length > 6)) {
		window.alert("Your new password must be longer than two positions and less than 7 positions! " )
		login.pw.focus()
		return false
		}
	if (login.pw.value != login.newpwver.value) {
		window.alert("Your new password and the verification box do not agree, please enter these again !")
		login.pw.focus()
		return false
		}
	}
function check_norm_input() {
	if (login.pw.value == "") {
		window.alert("Your password must be longer than two positions and less than 7 positions! ")
		login.pw.focus()
		return false
		}
	}