function apri_finestra_inserisci_immagine(parametri, laform, campo) 
    {
    
    //larghezza e altezza
    var width1=600;
    var height1=600;
    
    //trovo top e left
    var left1 = (screen.width - width1) / 2;
    var top1 = (screen.height - height1) / 2;
    
    //preparo le proprietà
    proprieta='top='+top1+',left='+left1+',';
    proprieta+='width='+width1+',height='+height1+',';
    proprieta+='status=0,scrollbars=1,resizable=1';
    
    window.open('popup.php?'+parametri, 'Inserisci_immagine', proprieta);    
    campo_markup = eval("document." + laform + "." + campo);        
    }