// popup_window.jsfunction openPopup(pageID, widthVal, heightVal) {		popupWindow = window.open(pageID,"","left=30,top=32,width="+widthVal+",height="+heightVal+",scrollbars=yes,toolbar=no,titlebar=no,resizable=yes");		popupWindow.focus();}function openNewWin(URL) {		popupWindow = window.open(URL,"","left=10,top=10,scrollbars=yes,toolbar=yes,titlebar=yes,resizable=yes,location=yes,menubar=yes,directories=yes");		popupWindow.focus();}