/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function openWindow(url,w,h,sb) { newWindow = window.open(url, '', 'width='+w+'px,height='+h+'px,left=0,top=0,resizable=1,scrollbars='+sb); newWindow.focus(); }