<!--
function validate(){

var string1=document.frmEmail.email.value

			if (document.frmEmail.title.value==""){

				alert("Please select your Title!")

				document.frmEmail.title.focus()

				return false;

			}
			
			if (document.frmEmail.firstName.value==""){

				alert("Please enter your First Name !")

				document.frmEmail.firstName.focus()

				return false;

			}

			if (document.frmEmail.lastName.value==""){

				alert("Please enter your Last Name !")

				document.frmEmail.lastName.focus()

				return false;

			}

			if (document.frmEmail.email.value==""){

				alert("Please enter your E-mail Address!")

				document.frmEmail.email.focus()

				return false;

			}

		

			if (string1.indexOf("@")==-1){

						alert("Please enter valid E-mail Address. e.g. yourname@xyz.com")

						document.frmEmail.email.focus()

						return false

						}

				if (string1.indexOf(".")==-1){

						alert("Please enter valid E-mail Address. e.g. yourname@xyz.com")

						document.frmEmail.email.focus()

						return false

						}

			if (document.frmEmail.enqReg.value==""){

				alert("Please select what your enquiry/Comments are about!")

				document.frmEmail.enqReg.focus()

				return false;

			}			
			
			if (document.frmEmail.comments.value==""){

				alert("Please enter your Feedback/Questions/Booking Information !")

				document.frmEmail.comments.focus()

				return false;

			}
}
-->