mi spiegate perche' questa funzione che apre un popup centrata non e' resizable ne mostra le scroolbar

codice:
 _function PopupCentrata(file) {
 ___var w = 570;
 ___var h = 420;
 ___var l = Math.floor((screen.width-w)/2);
 ___var t = Math.floor((screen.height-h)/2);
 ___window.open(file,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l,'scrollbars=yes,resizable=yes');

 //"istruzioni.php"
 _}