function checkform_enquire() {
	msg = "";

	if (document.frm.fname.value == "")  msg = msg + "- Your name\n";
	if (!emailcheck(document.frm.email.value)) msg = msg + "- Your valid email address\n";
	if (document.frm.tel.value == "")  msg = msg + "- Your telephone number\n";
	if (document.frm.dob.value == "")  msg = msg + "- Your date of birth or age\n";
	if (document.frm.country.value == "")  msg = msg + "- Your country\n";

	if (document.frm.datefrom.value == "")  msg = msg + "- Travel dates from\n";
	if (document.frm.dateto.value == "")  msg = msg + "- Travel dates to\n";
	if (document.frm.tour1.value == "")  msg = msg + "- Tours you are interested in\n";
	if (document.frm.howhear.value == "")  msg = msg + "- How you heard about us\n";

	if (msg!="")
		{
		alert ("Please complete the following:\r\n\r\n"+msg);
		return false;
		}
}

