function apriFinestra(indirizzo,nome,altezza,larghezza){
l = larghezza;
h = altezza;
sinistra = (screen.width-l)/2;
alto = (screen.height-h)/2;
window.open(indirizzo,nome,"left="+sinistra+",top="+alto+",width="+l+",height="+h+",resizable,scrollbars");
}