function openWin(URL,w,h) {
leftpos=Math.round((screen.width-w)/2);
toppos=Math.round((screen.height-h)/2);
NYCOHPWin = window.open(URL,'NYCOHP','top='+toppos+',left='+leftpos+',width='+w+',height='+h+',toolbar=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no,location=no');
NYCOHPWin.window.focus();
}