G_hwndPopup = null; function HeadMenu() { document.write(''); document.write(' '); document.write(' '); document.write(' '); document.write(' '); document.write(''); } function Popup( szUrl, iWidth, iHeight) { if (G_hwndPopup != null) { G_hwndPopup.close(); } G_hwndPopup = window.open(szUrl, "popup", "width=" + iWidth + "," + "height=" + iHeight + ",resizable=yes"); G_hwndPopup.focus(); } function ClosePopup() { if (G_hwndPopup != null) { if (!G_hwndPopup.closed) { G_hwndPopup.close(); G_hwndPopup = null; } } }