function ValidateForgotPassword(thisForm)
{
		// 1. 
	
	if ("" == thisForm.txtFirstname.value){
		thisForm.txtFirstname.focus();
		thisForm.txtFirstname.select();
		alert("Please enter your first name");
		return false;
		}
	else	{
		var result = Checkapostrophe(thisForm.txtFirstname.value);
		if (result == false) {
			alert("Apostrophe character is not allowed. Please try again");
			thisForm.txtFirstname.focus();
			thisForm.txtFirstname.select();
			return(false);
			}
		}
	

		// 2. 
	if ("" == thisForm.txtLastname.value){
		thisForm.txtLastname.focus();
		thisForm.txtLastname.select();
		alert("Please enter your last name");
		return false;
		}
	else	{
		var result = Checkapostrophe(thisForm.txtLastname.value);
		if (result == false) {
			alert("Apostrophe character is not allowed. Please try again");
			thisForm.txtLastname.focus();
			thisForm.txtLastname.select();
			return(false);
			}
		}
		// 3. 
	
	
		// 6. 
	if ("" == thisForm.txtEmail.value){
		thisForm.txtEmail.focus();
		thisForm.txtEmail.select();
		alert("Please enter your email");
		return false;
		}
	else	{
		var result = CheckEmail(thisForm.txtEmail.value);
		if (result == false) {
			alert("Invalid Email. Please try again");
			thisForm.txtEmail.focus();
			thisForm.txtEmail.select();
			return(false);
			}
		}

	if ("" == thisForm.txtCompany.value){
		thisForm.txtCompany.focus();
		thisForm.txtCompany.select();
		alert("Please enter your company name");
		return false;
		}
	else	{
		var result = Checkapostrophe(thisForm.txtCompany.value);
		if (result == false) {
			alert("Apostrophe character is not allowed. Please try again");
			thisForm.txtCompany.focus();
			thisForm.txtCompany.select();
			return(false);
			}
		}
	







	return true;
}
