var default_popup_width  = 775;
var default_popup_height = 750;

function showpopup(link) {

    var height = default_popup_height;
    var width = default_popup_width;
    var top = 10;
    var left = screen.width - width - 30;

    if (!window_num) {
        var window_num;
    }

    window_num++;

    w = window.open(link.href, 'window'+window_num, 'top='+top+',left='+left+',width='+width+',height='+height+',scrollbars=1,resizable=1,menubar=0,statusbar=0,resize=1')
    w.focus();



    return false;
}

function autoresize() {

    return true;

    /*
    var doc_height = document.body.scrollHeight;

    if (doc_height > default_popup_height) {
        self.resizeTo(default_popup_width,doc_height + 40);
    }
    return true;
    */
}
