function resetPassword( link )
{
	var form = document.forms.login;
	if( !validateSignup( form, true ) ) // Use signup validation on the login form because the signup form has only an e-mail field
	{
		return false;
	}
	link.href = "~ResetPassword.php~email=" + encodeURIComponent( form.email.value );
	return true;
}
