function popupWin(href, windowname, wd, ht) {
 x = (screen.width)?Math.floor((screen.width-wd)/2) : 100;
 y = (screen.height)?Math.floor((screen.height-ht)/2) : 100;
 wstat = 'resizable=yes,location=no,directories=no,menubar=yes,toolbar=no,scrollbars=yes,status=no,width='+wd+',height='+ht+',left='+x+',top='+y;
 win = window.open(href,windowname,wstat);
 if (win && !win.closed) win.focus();
}

function popupWinNoScroll(href, windowname, wd, ht) {
 x = (screen.width)?Math.floor((screen.width-wd)/2) : 100;
 y = (screen.height)?Math.floor((screen.height-ht)/2) : 100;
 wstat = 'resizable=yes,location=no,directories=no,menubar=no,toolbar=no,scrollbars=no,status=no,width='+wd+',height='+ht+',left='+x+',top='+y;
 win = window.open(href,windowname,wstat);
 if (win && !win.closed) win.focus();
}

function popupLeft(href, windowname, wd) {
 var lft = screen.width - wd - 23;
 var ht = screen.height - 62;
 var tp = 8;
 var wstat = 'resizable=yes,scrollbars=yes,status=no,width='+wd+',height='+ht+',left='+lft+',top='+tp;
 win = window.open(href,windowname,wstat);
 if (win && !win.closed) win.focus();
}
