function actualizar_colegiado(){ 
  mail=document.getElementById('txtElctMail').value;

   depa=document.getElementById('cboDepaCode').value;
    prov=document.getElementById('cboProvCode').value;
    dist=document.getElementById('cboDistCode').value;
    direccion=document.getElementById('txtDireDesc').value;
    ecivil=document.getElementById('cboEsCvCode').value;
    LM=document.getElementById('txtMltrDesc').value;
    RUC=document.getElementById('txtRUCxDesc').value;
    fechanac=document.getElementById('cboFNacDia').value+'-'+document.getElementById('cboFNacMes').value+'-'+document.getElementById('txtFNacAnho').value;
    url='Ccontrol/Ccontrol.php';
    data='accion=actualizar_colegiado&mail='+mail+'&ubigeo='+depa+prov+dist+'&direccion='+direccion+'&ecivil='+ecivil+'&LM='+LM+
    '&RUC='+RUC+'&fechanac='+fechanac ;
 
 //    myajax.Link(url+'?'+data,'mensaje_colegiado') ;
 /*  ajax=objetoAjax();
	    ajax.open('GET', '../Ccontrol/Ccontrol.php?'+data);
	    
	    ajax.onreadystatechange=function() {
		    if (ajax.readyState==4) {
			resp=ajax.responseText
			alert(resp);
		    }
	    }
	    ajax.send(null)
 */
myajax.Request({
		url: url,
		param: data,
			onOK:function(transport){
				alert(transport.responseText);
				}
			}); 
}


function buscar_colegiados(){
	alert("Lo sentimos, la p\xE1gina est\xE1 en mantenimiento") ;
   /* apepa=$('txt_apepa').value;
    apema=$('txt_apema').value;
    prenombres=$('txt_prenombres').value; cip=0;
    cip=$('txt_cip').value;
    id=mostrar_valor_seleccionado('opt_busqueda');
    tipo=mostrar_valor_seleccionado('opt_tipo');
   
        $('resultado_busqueda').style.display='block';  
    if(tipo=='T') { if(id=='N') opc=4; else  opc=3;   }
    else if(tipo=='O')  {  if(id=='N') opc=1; else  opc=2;  }
   
    if(id=='N'){
         if(apepa!='' && prenombres!='' )
                 myajax.Link('Ccontrol/Ccontrol.php?accion=buscar_colegiado&apepa='+apepa+'&apema='+apema+'&nombres='+prenombres+'&bus='+opc+'&tipo='+tipo,'detalle_busqueda');
        else alert('Ud. debe ingresar apellido paterno y prenombres') ;     
    }
    
    if(id=='C'){
        if(cip!='' ) {
			apepa=cadenasincero(cip) ; 
                 myajax.Link('Ccontrol/Ccontrol.php?accion=buscar_colegiado&apepa='+apepa+'&apema='+apema+'&nombres='+prenombres+'&bus='+opc+'&tipo='+tipo,'detalle_busqueda'); }
        else alert('Ud. debe ingresar el CIP') ;   
    }
   */
}

function muestra_cumple(id){
    $('detalle_cumple').style.display='block';
    myajax.Link('Ccontrol/Ccontrol.php?accion=buscar_cumple&idcap='+id,'detalle_cumple');
}

function mostrar_directivos(){
    periodo=$('cboPeriodo_directivo').value;
    sede=$('cboConsejo_directivo').value; sede=sede.split('|'); id_sede=sede[0]; id_consejo=sede[1];
    organismo=$('cboOrganismo_directivo').value;
    cargo=$('cboCargo_directivo').value;
    $('busca_directivos').style.display='block';
    myajax.Link('Cvista/institucional/quienesSomos/busqueda_directivos.php?accion=busca_directivos&periodo='+periodo+'&id_sede='+id_sede+'&id_consejo='+id_consejo+'&organismo='+organismo+'&cargo='+cargo,'busca_directivos');
}
