function validateForm(objForm)
{
	var szErrorMessage = "You need to enter the following information : \n\n";
	var szEmpty = "";
	var bOk = true;
	
if (objForm.firstname.value == "") {bOk = false; szErrorMessage += "Your first name\n";}
if (objForm.surname.value == "") {bOk = false; szErrorMessage += "Your surname\n";}
if (objForm.email.value == "") {bOk = false; szErrorMessage += "Your E-mail Address\n";}
if (objForm.phone.value == "") {bOk = false; szErrorMessage += "Your contact number\n";}
if (!bOk) {
		alert(szErrorMessage);
	}
	return bOk;
}

