k(form)  {
		if(form.cperson.value  == "")  {
		alert("Please specify the contact person.");
		form.cperson.focus();
		return(false);
		}
		
		if(form.hphone.value  == "")  {
		alert("Please specify your contact number.");
		form.hphone.focus();
		return(false);
		}

		if(form.authorisedby.value  == "")  {
		alert("Please authorise this form.");
		form.authorisedby.focus();
		return(false);
		}
		
		if(form.attach.checked  == false)  {
		alert("Please indicate that you attach the required documents.");
		form.attach.focus();
		return(false);
		}
		
		if(form.proceed.checked  == false)  {
		alert("Have you read the terms and conditions? Please tick the box if you have.");
		form.proceed.focus();
		return(false);
		}
}

