I'm new to JavaScripts,so probably I did something wrong. I would like to use the window.open method to open a new non resizable window with a predefined size, and no scrollbar. In my HTML5 file I used the following lines:
<a href="credits.html" onclick="window.open(this.href, 'mywin','toolbar=no,resizable=no,scrollbars=no, status=no, left=20,top=20,width=500,height=400'); return false;">Credits</a>
The window displays correctly, the size is ok, but it is resizable and there is a scrollbar. I used Chrome as default browser.