
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("Doc/Soci"+Anno+".pdf");
};


