// JScript source code
function CheckForm()
{
	if (document.frmContactus.txtName.value == "")
	{
		alert("Please enter your name.");
		document.frmContactus.txtName.focus();
		return false;
	}
	if (document.frmContactus.txtEmail.value == "")
	{
		alert("Please enter your email address.");
		document.frmContactus.txtEmail.focus();
		return false;
	}
	if (document.frmContactus.txtComment.value == "")
	{
		alert("Please enter a comment to be sent to us.");
		document.frmContactus.txtComment.focus();
		return false;
	}
	return true;
}