function Validate()
{
	if (Trim(document.frm.txtFirstName.value) == "")
	{
		alert ("Please Enter First Name");
		document.frm.txtFirstName.focus();
		return false;
	}
	else if(!isLetter(document.frm.txtFirstName.value))
	{
		alert("First name conatains only Letters.");
		document.frm.txtFirstName.focus();
		return false;
	}
	if (Trim(document.frm.txtLastName.value) == "")
	{
		alert ("Please Enter Last Name");
		document.frm.txtLastName.focus();
		return false;
	}
	else if(!isLetter(document.frm.txtLastName.value))
	{
		alert("Last name conatains only Letters.");
		document.frm.txtLastName.focus();
		return false;
	}
	if (Trim(document.frm.txtEmail.value) == "")
	{
		alert ("Please Enter Email");
		document.frm.txtEmail.focus();
		return false;
	}
	if (!isEmail(document.frm.txtEmail.value))
	{
		alert ("Please Enter Proper Email");
		document.frm.txtEmail.focus();
		return false;
	}
	if (Trim(document.frm.txtComment.value) == "")
	{
		alert ("Please Enter Comment");
		document.frm.txtComment.focus();
		return false;
	}

	if (Trim(document.frm.code.value) == "")
	{
		alert ("Please Enter Security Code");
		document.frm.code.focus();
		return false;
	}

	document.frm.hidAction.value = "send";



return true;

}
