function validateForm(objForm)
{
	var szErrorMessage = "You need to enter the following information : \n\n";
	var szEmpty = "";
	var bOk = true;
	
if (objForm.name.value == szEmpty) {bOk = false; szErrorMessage += "Your full name\n";}
if (objForm.email.value == szEmpty) {bOk = false; szErrorMessage += "Your email address\n";}
if (objForm.details.value == szEmpty) {bOk = false; szErrorMessage += "Your enquiry\n";}
	if (!bOk) {
		alert(szErrorMessage);
	}
	return bOk;
}