var stato = new Array();

var num_elementi=100;


if (document.getElementById){
   document.write('<style type="text/css">')
   document.write('.div_nascosto{display:none;}')   
   document.write('</style>')
}

function modifica(elem){
   if (stato[elem]=="block") stato[elem]="none";
   else stato[elem]="block";

   document.getElementById(elem).style.display=stato[elem];
   return false;
}
