function Validate(frm)
{
	// Check the Name field to see if any characters were entered
	if (frm.txtName.value == "")
	{
		alert("Please provide your name, email address and a brief request in the enquiry field before submitting.");
		frm.txtName.focus();
		return false;
	}
	// Check the Email field to see if any characters were entered
	if (frm.txtEmail.value == "")
	{
		alert("Please provide your name, email address and a brief request in the enquiry field before submitting.");
		frm.txtEmail.focus();
		return false;
	}
	// Check the Enquiry field to see if any characters were entered
	if (frm.txtEnquiry.value == "")
	{
		alert("Please provide your name, email address and a brief request in the enquiry field before submitting.");
		frm.txtEnquiry.focus();
		return false;
	}
}
