<!--
	function DoctorElements()
	{
		var i,j;
		for (i=0; i < document.forms[0].elements.length-1; i++)
			switch (String(document.forms[0].elements[i].name).substring(0,3))
			{
				case "chk":
					if (document.forms[0].elements[i].checked)
						document.forms[0].elements[i].value = "Yes";
					else {
						document.forms[0].elements[i].checked = true;
						document.forms[0].elements[i].value = "No";
					}
					break;
			}
	}
// -->



 function checkFields() {
  missinginfo = "";
  if (document.f1.txtName.value == "") {
  missinginfo += "\n     - Your Name";
  }
  if (document.f1.txtTelNo.value == "") {
  missinginfo += "\n     - Your Telephone Number";
  }
  if (document.f1.txtCompany.value == "") {
  missinginfo += "\n     - Your Company Name or Home";
  }
  if (missinginfo != "") {
  missinginfo ="_____________________________\n" +
  "Sorry, we need the following information to respond effectively to your enquiry: -\n" +
  missinginfo + "\n_____________________________" +
  "\nPlease enter this information and submit again";
  alert(missinginfo);
  return false;
  }
 }
 //-->
