
function VisualizzaSocio(IDSocio){
    document.getElementById("pan_"+IDSocio).style.display="";
    document.getElementById("aprischeda_"+IDSocio).style.display="none";
    document.getElementById("chiudischeda_"+IDSocio).style.display="";
};

function NascondiSocio(IDSocio){
    document.getElementById("pan_"+IDSocio).style.display="none";
    document.getElementById("aprischeda_"+IDSocio).style.display="";
    document.getElementById("chiudischeda_"+IDSocio).style.display="none";
};
function StampaSoci(Anno){
    //window.open("Report/ViewReport.aspx?nomereport=elencosoci.rpt&EliminaReport=1&VisualizzaReport=1&SF={ IscrizioneAnno.Anno} ="+Anno);
     
     window.open("Doc/Soci"+Anno+".pdf");
};

