		function chkFormular() {
			if (document.Formular.surename.value == "") {
				alert("Please insert your Name !");
				document.Formular.surename.focus();
				return false;
			}
			if (document.Formular.email.value == "") {
				alert("Please insert your Email !");
				document.Formular.email.focus();
				return false;
			}
			return true;
		}
