function popNotice() { // Common function to create popup windows throughout the site. // e.g. // openWin('test.asp', 'winTest', 400, 300); (Popup without scroll bar) // openWin('test.asp', 'winTest', 400, 300, 'yes'); (Popup with scroll bar) // openWin('test.asp', 'winTest', 400, 300, 'auto'); (Popup with scroll bar display automatically) sURL = "http://pctv.netvigator.com/html/event/system/notice_forum.html"; // sURL = "http://pctv.netvigator.com/pctv/admail/images/system/080731_pop.jpg"; sWindowName = "notice"; w = 600; h = 500; sScroll = "no"; var x = (screen.width - w) / 2; var y = (screen.height - h) / 2; if (sScroll==null) sScroll = "no"; var sOption = ""; sOption = sOption + "toolbar=no, channelmode=no, location=no, directories=no, resizable=no, menubar=no"; sOption = sOption + ", scrollbars=" + sScroll + ", left=" + x + ", top=" + y + ", width=" + w + ", height=" + h; var win = window.open(sURL, sWindowName, sOption); //return win; } // document.write("
");