// JavaScript Document
function validate() {

			if (document.formulario.user.value.length==0) {
			alert("please enter your user");
			return false;
			}
			if (document.formulario.pass.value.length==0) {
			alert("please enter your password");
			return false;
			}
			if (document.formulario.pass1.value.length==0) {
			alert("please enter repirt your password");
			return false;
			}
			if (document.formulario.pass.value!=document.formulario.pass1.value) {
			alert("your password does not match.");
			return false;
			}
			if (document.formulario.name.value.length==0) {
			alert("please enter your name");
			return false;
			}
			if (document.formulario.email.value.length==0) {
			alert("please enter your email");
			return false;
			}
			if (document.formulario.phone.value.length==0) {
			alert("please enter your phone");
			return false;
			}
			if (document.formulario.terms.checked==false) {
			alert("Please acepte the terms. Clicking I accept means that you agree to the MLS TULUM service agreement and privacy statement.");
			return false;
			}
	
			document.formulario.submit()
			return true;
			}
