
var leftPos=0
var topPos=0
if (screen) {
   leftPos = screen.width-600
}

function newPopWindow(name, url, w, h) {
    popupWin=window.open(url, name,'resizable=no,scrollbars=yes,toolbar=no,directories=no,menubar=no,status=no,width='+w+',height='+h+', left='+leftPos+',top='+topPos);
    leftPos -= 24
    topPos += 24
    popupWin.focus()
}                    



