// JavaScript Document
function Finestra(indirizzo,larghezza,lunghezza) {
var l = (screen.width/2) - (larghezza/2);
var t = (screen.height/2) - (lunghezza/2);
window.open(indirizzo,"finestra_nuova","left=" + l + ",top=" + t + ", width=" + larghezza + ",height=" + lunghezza);
}