function ValidateForgot(theForm) {
	if (theForm.Email.value=='') {
		alert("Please specify your e-mail address !");
		theForm.Email.focus();
		return false;
	}
	
	return true;
}

function ValidateLogin(theForm) {
	if (theForm.Email.value=='') {
		alert("Please specify your e-mail address !");
		theForm.Email.focus();
		return false;
	}
	
	if (theForm.Pass.value=='') {
		alert("Please specify your password !");
		theForm.Pass.focus();
		return false;
	}
	
	return true;
}

function ValidateRegister(theForm) {
	if (theForm.FullName.value=='') {
		alert("Please specify your full name !");
		theForm.FullName.focus();
		return false;
	}
	
	if (theForm.Email.value=='') {
		alert("Please specify your e-mail address !");
		theForm.Email.focus();
		return false;
	}
	
	if (theForm.Pass.value=='') {
		alert("Please specify your password !");
		theForm.Pass.focus();
		return false;
	}
	
	if (theForm.Pass2.value=='') {
		alert("Please verify your password !");
		theForm.Pass2.focus();
		return false;
	}
	
	if (theForm.Pass.value!=theForm.Pass2.value) {
		alert("Your password and verification must be same !");
		theForm.Pass2.focus();
		return false;
	}
	
	return true;
}
