function validarsocios(){
    validanomap();

}

function validanomap(){
     var nombre=document.socios.nombre;
     var apellidos=document.socios.asunto;
     if(nombre.value.length<=0 && apellidos.value.length<=0){
           alert("escribe nombre y apellidos");
           nombre.style.backgroundColor="ca8f9c";
           apellidos.style.backgroundColor="ca8f9c";
           document.getElementById("muestra_nombre").style.visibility="visible";
           document.getElementById("muestra_apellidos").style.visibility="visible";
           return false;
     }else if(nombre.value.length<=0 && apellidos.value.length>0){
           alert("escribe nombre");
           document.getElementById("muestra_nombre").style.visibility="visible";
           nombre.style.backgroundColor="ca8f9c";
           return false;
     }else if(apellidos.value.length<=0 && nombre.value.length>0){
           alert("escribe apellidos");
           apellidos.style.backgroundColor="ca8f9c";
           document.getElementById("muestra_apellidos").style.visibility="visible";
           return false;
     }else{
      return true;
     }
}

    function resaltalinea(id){
    document.getElementById(id).style.backgroundColor="2b3f28";

}

function vuelvelinea(id){
   document.getElementById(id).style.backgroundColor="3b4f38";
}
