var win = null;

function setPopup( win ) {
    this.win=win;
}

function derefWin(){ win=null; }

function closePopup(){
    if (win!=null) {
        win.close();
        derefWin();
    }  
}

function dialog( url, params, width, height ){
    closePopup();
    if (params != null) {
        params = "&" + params;
    }
    else {
        params = "";
    }
    url = "http://" + location.host + "/dialog.jsp?url=" + url + params;
    if (width==null || height==null) {
        width = 750;
        height = 550;
    }    
    var top=(screen.height- height)/2;
    var left=(screen.width-width)/2;
    win=window.open("","popwin","height=" + height + ",width=" + width +",top=" + top + ",left=" + left
+ ",scrollbars,resizable");
    win.location.replace(url);
}

function popup( url ){
    closePopup();
    url = "http://" + location.host  + url;
    var width = 750;
    var height = 600;
    var top=(screen.height- height)/2;
    var left=(screen.width-width)/2;
    win=window.open("","casegoodsWin","height=" + height + ",width=" + width +",top=" + top + ",left=" + left + ",scrollbars, resizable=0");
    win.location=url;
}
