Open window with scroll bars

by Dan McCoy

HTML

<input type="button" value="Open New Window" onclick="OpenOurWindow()" />

JavaScript

function OpenOurWindow(){
    window.open('https://www.google.co.uk', 'QuoteWindow', 'width=920,height=700,scrollbars=1');
}