function validate() {

	if (document.contactus.comments.value.length<5)
		{alert("Please enter your request or comment in the QUERIES/COMMENTS box.");
		 return false;}


	if (document.contactus.name.value.length<2)
		{alert("Please enter your full name.");
		 return false;}

	if (document.contactus.TEL.value.length<9)
		{alert("Please enter your full telephone number including STD code.");
		 return false;}

	return true;
	}
