<!--
function popUp(URL,tb,t,w,h) {
    // tb = toolbar, t = target name, w = width, h = height
    adj = 50;
    if (w == null) w = 550;
    if (h == null) h = 500;
    if (t == null) t = "winpop";
    if (tb == null || tb > 3) tb = 1;
    if (tb == 1 ) adj = 70;
    w2 = (screen.width - w) / 2;
    h2 = ((screen.height - h) / 2) - adj;
    // 1 = full window, 2 = window w/scrollbars, 3 = window w/scrollbars+status
    if (tb == 1) toolbar = "toolbar=1,scrollbars=1,location=1,status=1,menubar=1,resizable=1,width=" + w + ",height=" + h + ",left=" + w2 + ",top=" + h2;
    if (tb == 2) toolbar = "toolbar=0,scrollbars=1,location=0,status=0,menubar=0,resizable=0,width=" + w + ",height=" + h + ",left=" + w2 + ",top=" + h2;
    if (tb == 3) toolbar = "toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=0,width=" + w + ",height=" + h + ",left=" + w2 + ",top=" + h2;
win = window.open(URL, t, toolbar);
if(win.focus)win.focus(); 
}
//-->
