var popup = null;
function pager(pic,wide,high){
    popup = window.open(pic,'pic','scrollbars,resizable,width='+wide+',height='+high);
}
function destroyPop() {
    if (popup != null && popup.open) popup.close();
}
window.onfocus=destroyPop; //destroys popup on refocus the window
