// JavaScript Document

function chkreqform()
{
	if (Trim(document.frmcontact.txtname.value) == "")
	{
		alert ("Please Enter Name");
		document.frmcontact.txtname.focus();
		return false;
	}
	if (Trim(document.frmcontact.txtphone.value) == "")
	{
		alert ("Please Enter Phone No");
		document.frmcontact.txtphone.focus();
		return false;
	}
	if (Trim(document.frmcontact.txtemail.value) == "")
	{
		alert ("Please Enter Email");
		document.frmcontact.txtemail.focus();
		return false;
	}
	if (!isEmail(document.frmcontact.txtemail.value))
	{
		alert ("Please Enter Proper Email");
		document.frmcontact.txtemail.focus();
		return false;
	}
	if (Trim(document.frmcontact.txtcomment.value) == "")
	{
		alert ("Please Enter Comments");
		document.frmcontact.txtcomment.focus();
		return false;
	}
	return true;

}

