function valida_envia(){
    //valido el nombre
    if (document.reg.login.value.length==0){
       alert("Introduce tu nombre de usuario")
       document.reg.login.focus()
       return (false);
    } 

    if (document.reg.password.value.length==0){
       alert("Introduce tu contraseņa")
       document.reg.password.focus()
       return (false);
    } 
	    if (document.reg.nombre.value.length==0){
       alert("Introduce tu nombre")
       document.reg.nombre.focus()
       return (false);
    } 
	    if (document.reg.email.value.length==0){
       alert("Introduce tu email")
       document.reg.email.focus()
       return (false);
    } 
	    if (document.formagenda.show.value.length==0){
       alert("Introduce el show")
       document.fvalida.show.focus()
       return (false);
    } 
	
	  alert("Gracias por registrarte en THEPERLAS.com");
	  return (true);
    document.reg.submit();
}