function checkFields() {
	missinginfo = "";
		if (document.form.realname.value == "") {
		missinginfo += "\n     -  Name";
	}
		if (document.form.enquiry.value == "") {
		missinginfo += "\n     -  Your Enquiry";
	}
		if ((document.form.email.value == "") && (document.form.phone.value == "") && (document.form.fax.value == "")){
		missinginfo += "\n     -  Please give your EMAIL or PHONE NUMBER or FAX NUMBER";
	}
		if (missinginfo != "") {
		missinginfo ="_______________________________________________________________\n" +
		"                                 You failed to correctly fill in the following:\n" +
		missinginfo + "\n_______________________________________________________________" +
		"\n                                 Please re-enter and submit again!";
		alert(missinginfo);
		return false;
	}
	else return true;
}

var menu_selection="";

function  checkForm() {
if (dropDownMenu()) {
document.forms[0].results.value=menu_selection;


   }
}
