I set the window size in two ways:
the first
box_window = window.open(self.options.form_url, '_blank', 'База знаний', 'resizable=yes,scrollbars=yes,top=50,left=50,width=400,height=400'); second
box_window = window.open(self.options.form_url, '_blank', 'База знаний', 'resizable=yes,scrollbars=yes,top=50,left=50,width='+screen.availWidth+',height='+screen.availHeight+''); In all cases, in chrome version 25, the window opens in a small size (100x100).
What other ways are there to set the window size?
UPD
My question is exactly the size of the new window . That is how to make it work in the old version of chrome. And so the window opens correctly in all other versions of all browsers.