prova così:

codice:
function Popup(apri) {	
	var stile = ",status=no,resize=no,menubar=no, toolbar=no,scrollbar=no,location=no,directories=no'";
	
	larg=365; 
	alt=120;
	toptop=(screen.height/2)-(alt/2); 
	leftleft=(screen.width/2)-(larg/2);
	
	newwindow=window.open (apri, '', 'top='+toptop+',left='+leftleft+',width='+larg+',height='+alt+stile)
	newwindow.focus();
}
ciao