// JavaScript Document
	
function validate() {

			if (document.registro.comparacion.value!=document.registro.tmptxt.value) {
			alert("el texto no coincide con el texto de la imagen");
			return false;
			}
			if (document.registro.nombre.value.length==0) {
			alert("Porfavor ingrese su nombre");
			return false;
			}
			if (document.registro.email.value.length==0) {
			alert("Porfavor ingrese su correo electronico");
			return false;
			}
			document.registro.submit()
			return true;
			}
