//funzione che apre una pagina popup
        function  apriFinestra(location)  { 
        //si utilizza un ciclo if per individuare il documento da inserire nella pagina
        /*al valore 0 non corrisponde nessun documento in quanto é
        abbinato al testo "scegli una pagina"*/
          // width=800,height=600,  
                   
          //var  obj=window.open("","","resizable=yes,scrollbars=yes");
          //obj.location=location; 
             var w= 500;
             var h = 335;
             var l = Math.floor((screen.width-w)/2);
             var t = Math.floor((screen.height-h)/2); 
             var  obj=window.open("","","width="+w+ ",height="+h+",top="+t+",left="+l,"resizeble= yes");
          obj.location=location; 
              }
 
