function apri(page){
larghezza = 200; 
altezza = 200; 
var x = (screen.width-larghezza)/2; 
var y = (screen.height-altezza)/2; 

window.open(page,"","width=" + larghezza + ",height=" + altezza + ",left=" + x + ",top=" + y, scrollbar="no")
}
