function ShowPopup(url, width, height, name) {
        var args;

        args= "width=" + width + ",height=" + height;
        args+=",scrollbars=no,status=no,resizable=no,location=no";
        win = window.open(url.href,name,args);
        
}

function ShowScrollPopup(url, width, height, name) {
        var args;

        args= "width=" + width + ",height=" + height;
        args+=",scrollbars=yes,status=no,resizable=no,location=no";
        win = window.open(url.href,name,args);
        
}