// var objWindow; function popWindow (URL,width,height) { objWindow = window.open(URL,"POP","height="+height+",width="+width+",scrollbars,resizable"); if (objWindow) { objWindow.focus(); } } function closeWindow() { objWindow.close(); }