function pop_up(url, nome, w, h, resize, barrastato, barraindirizzi, barrastrumenti, scroll, centered) {
if (centered == 1){ 
larghezza = (screen.width - w) / 2;
altezza = (screen.height - h) / 2;
}
else {
larghezza = 0;
altezza = 0;
}
props = 'height='+h+',width='+w+',top='+altezza+',left='+larghezza+',resizable='+resize+',status='+barrastato+',location='+barraindirizzi+',toolbar='+barrastrumenti+',scrollbars='+scroll+''
finestra = window.open(url, nome, props, centered);
}

