I\'m using Javascript\'s self.open() to open a link in a new window and i\'d like that window to be maximized. I tried the fullscreen=yes option, w
self.open()
fullscreen=yes
window.open('your_url', 'popup_name','height=' + screen.height + ',width=' + screen.width + ',resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes,location=yes')