popup.js 185 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 var newwindow; function popupwindow(url) { newwindow=window.open(url,'name','height=500,width=500,resizable=yes,scrollbars=yes'); if (window.focus) { newwindow.focus() } }