function CheckForm(objForm)
{
	if (document.all.Name.value == "")
	{
		document.all.Name.focus();
		alert("Please enter your name");
		return false;
	}
	if (document.all.Phone.value == "")
	{
		document.all.Phone.focus();
		alert("Please enter a contact phone number");
		return false;
	}
	if (document.all.Email.value == "")
	{
		document.all.Email.focus();
		alert("Please enter your email address");
		return false;
	}
	if (document.all.Comments.value == "")
	{
		document.all.Comments.focus();
		alert("Please enter your comments");
		return false;
	}
	return true;
}