I found some answers of this question. This question is duplicated. But I'll anser again because I'll integrate and add informations about this question.
To resize the window, you can simply do this:
window.resizeTo(width, height);
But this method is not working in Chrome and Opera. How do you resize an IE browser window to 1024 x 768
The reason from The javascript "resizeTo" function not working in Chrome and Opera is:
The resizeTo method is disabled by default in several browsers, and I
know that it can also be manually disabled in Firefox.
It has been widely misused, so most browser vendors feel that it
should be disabled, or at least a user controllable option.
But the method is working on popups even in Chrome or Opera. I guess the reason why is because the browser vendors thought the resizeTo method could be needed in popups, and I think so.
To discuss about this I made some thread about this issue on ux.stackexchange.com.
http://ux.stackexchange.com/questions/9903/why-is-resizing-the-browser-window-bad-practice/9962#9962
I'm not sure if the resizeTo method is evil in all times but I'm sure that one should very careful when using this method.