function cambiarTab(id) {
    document.getElementById('clearflag').value="true"
    if(id=="radio2"){
        document.getElementById('txtFono').value="N\xfAmero Telef\xf3nico";
        document.getElementById('txtRaz').value="";
        document.getElementById(id).style.display = "block";
        document.getElementById('radio1').style.display = "none";
    }
    else if(id=="radio1"){
        document.getElementById('txtRaz').value="Apellido y Nombre";
        document.getElementById('txtFono').value="";
        document.getElementById(id).style.display = "block";
        document.getElementById('radio2').style.display = "none";
    }
}

function recargarTab() {
    var i 
    for (i=0;i<document.busqueda.tipoBusqueda.length;i++){ 
       if (document.busqueda.tipoBusqueda[i].checked) 
          break; 
    } 
    
    var id = document.busqueda.tipoBusqueda[i].value

    if(id=="RadioButton2"){
        document.getElementById('txtFono').value="N\xfAmero Telef\xf3nico";    
        document.getElementById('radio2').style.display = "block";
        document.getElementById('radio1').style.display = "none";
    }
    else if(id=="RadioButton1"){
        document.getElementById('txtRaz').value="Apellido y Nombre";
        document.getElementById('radio1').style.display = "block";  
        document.getElementById('radio2').style.display = "none";
    }
}