function loginValidate() {


	if (document.updateform.login.value.length < 1) {
		window.alert("Please provide your Login (E-mail).");
		return false;
	}

	if (document.updateform.password2.value.length < 1) {
		window.alert("Please provide your password.");
		return false;
	}

	return true;
}

function updateValidate() {
	return true;
}