codice:
function esempio(str) {
var w=750;
var h=500;
var x=parseInt((screen.width-w)/2);
var y=parseInt((screen.height-h)/2);
searchWin = window.open(str,'esempio','scrollbars=yes,resizable=yes,width='+w+',height='+h+',left='+x+',top='+y+',status=NO,location=NO,toolbar=no');
}
ciao