function funcValidateForm(objForm)
{
	var bCorrect = true;
	var objElement = objForm.txtName;
	if(bCorrect && func_trim(objElement.value)=="")
	{
		bCorrect = false;
		alert("Please enter your name");
		objElement.focus();
	}

	

	objElement = objForm.txtEmail;
	if(bCorrect && func_trim(objElement.value)=="")
	{
		bCorrect = false;
		alert("Please enter your email address");
		objElement.focus();
	}

	if(bCorrect && !func_isEmail(objForm.txtEmail.value))
	{
		bCorrect = false;
		alert("Please enter your valid email address");
		objElement.focus();
	
	}
	
	objElement = objForm.txtPhone;
	if(bCorrect && func_trim(objElement.value)=="")
	{
		bCorrect = false;
		alert("Please enter your phone number");
		objElement.focus();
	}

	

	
	objElement = objForm.txtComments;
	if(bCorrect && func_trim(objElement.value)=="")
	{
		bCorrect = false;
		alert("Please enter your message");
		objElement.focus();
	}
	return bCorrect;
}