function apri(nomeFile, nomeFrame, larghezza, altezza, sinistra, alto, resiz, stat, menub, scrollb){
         //apre una finestra pop up
           win = window.open(nomeFile,nomeFrame,'width=' + larghezza + ',height=' + altezza + ',left=' + sinistra + ',top=' + alto + ',resizable=' + resiz + ',status=' + stat + ',menubar=' + menub + ',scrollbars=' + scrollb);
         }
function sel_img(nome_file){
         //alert(window.opener.name);
         window.opener.document.oFrmAdd.A_immagine.value=nome_file;
         window.close();
}

var menuDelay = null;

function hideMenu(){
   document.getElementById(old).style.visibility="hidden";
}

function showMenu(menu1,menu2){
   with(document){
      getElementById(old).style.visibility="hidden";
        getElementById(menu2).style.visibility="visible";
      //Valore da moficare per alzare o abbassare il punto di inizio del menu.
       getElementById(menu2).style.pixelTop=getElementById(menu1).offsetTop+90;
      getElementById(menu2).style.pixelLeft=getElementById(menu1).offsetLeft+10;
      old=menu2;
     }
}




