
function popup(aTag, width, height, title) {
    popupWin = window.open(aTag.href, title, 'location,width='+width+',height='+height+',top=0,resizable=yes,scrollbars=yes');
    popupWin.focus();
    return false;
}
