//JSPRAGUE
function popitup(url) {
        newwindow=window.open(url,'name','height=800,width=900,resizable=1,scrollbars=1');
        if (window.focus) {newwindow.focus()}
        return false;
}

//JSPRAGUE
function popup(url,w,h) {
    newwindow=window.open(url,'name','height='+h+',width='+w+',resizable=1,scrollbars=1');
    if (window.focus) {newwindow.focus()}
    return false;
}

