function openNewsWin(id){ w = 700; h = 450; var scrleft = (screen.width - w) / 2; var scrtop = (screen.height - h) / 2; window.open('view_news.asp?ID=' + id, '', 'toolbar=0, location=0, status=0, menubar=0, copyhistory=0, scrollbars=1, resizable=1, width= ' + w + ' , height= ' + h + ' ,left=' + scrleft + ', top=' + scrtop); } function openPNewsWin(id){ w = 700; h = 450; var scrleft = (screen.width - w) / 2; var scrtop = (screen.height - h) / 2; window.open('view_p_news.asp?ID=' + id, '', 'toolbar=0, location=0, status=0, menubar=0, copyhistory=0, scrollbars=1, resizable=1, width= ' + w + ' , height= ' + h + ' ,left=' + scrleft + ', top=' + scrtop); } function openChangePassWin(){ w = 400; h = 250; var scrleft = (screen.width - w) / 2; var scrtop = (screen.height - h) / 2; window.open('change_pass.asp', 'pass', 'toolbar=0, location=0, status=0, menubar=0, copyhistory=0, scrollbars=1, resizable=1, width= ' + w + ' , height= ' + h + ' ,left=' + scrleft + ', top=' + scrtop); } function openWin(url){ w = 700; h = 450; var scrleft = (screen.width - w) / 2; var scrtop = (screen.height - h) / 2; window.open(url, 'otherNews', 'toolbar=0, location=0, status=0, menubar=0, copyhistory=0, scrollbars=1, resizable=1, width= ' + w + ' , height= ' + h + ' ,left=' + scrleft + ', top=' + scrtop); }