function open_pop_scroll(url, width, height, wname) {
    var w = window.open(url, wname, "width=" + width + ",height=" + height + ",scrollbars=yes,resizeable=yes");
    if (w) {
        w.focus();
    }
}
