JavaScript snippet to open popup window

Anyone have a snippet handy to open a non-Skuid popup window? I need to open a site in a separate browser window, but I don't want it to be a tab like the redirect action.
2
Categories
- 7.9K Questions
- 926 Ideas
- 220 Discussion Categories
- 178 General
- 9 Community Feedback
- 3 Community Info
- 18 Knowledge Base
Comments
For example, the following when run should open a new window the size of the current screen with google as the webpage of choice:
window.open('https://www.google.com',ย '_blank', 'width=' + screen.width + ',height=' + screen.height);