function CheckFormContact()

	{

		if(document.frmContact.txtName.value=="")

		{

			alert("Please enter your full name.");

			document.frmContact.txtName.focus();

			return false;

			

			}

	re = new RegExp("([A-Za-z0-9_.-]){2,}@([A-Za-z0-9_.-]){2,}\.([A-Za-z0-9_.-]){2,}")

	if (document.frmContact.txtEmail.value.match(re) == null) 



		{

			alert("Please enter your valid email.");

			document.frmContact.txtEmail.focus();

			return false;

			

		}



		if(document.frmContact.txtComment.value=="")

		{

			alert("Please enter your comment or question.");

			document.frmContact.txtComment.focus();

			return false;

			

		}

	return true;

	}

