function chkForm()
{
if (document.frmContact.txtName.value.length==0)
	{
	alert("You must enter your name to send a feedback form.");
	document.frmContact.txtName.focus();
	return false;
	}

return true;
}
