﻿
function popupImage(intId, intWidth, intHeight) {
    //popupwindow = window.open("Include/PopupImage.aspx?ImageId=" + intId, "popupimage", 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1');
    //if (window.focus) { popupwindow.focus() }
    popUp("Admin/Include/PopupImage.aspx?ImageId=" + intId, "popupimage", intWidth, intHeight, 0, 1, 0);
}

function popupPrint(strUrl) {
    popUp(strUrl + "&print=true", "Utskriftversion", 840, 500, 1, 1, 1);
}

function popupFile(strUrl)  {
    popUp(strUrl, "Fil", 1024, 600, 0, 1, 0);
}

function popUp(url, name, width, height, toolbar, scrollbars, menubar) {
    // toolbar = 1 or 0. scrollbars = 1 or 0. menubar = 1 or 0

    window.status = url;
    newwindow = window.open(url, name, 'toolbar=' + toolbar + ',scrollbars=' + scrollbars + ',location=0,statusbar=0,menubar=' + menubar + ',resizable=1,width=' + width + ',height=' + height + '');
    if (window.focus) { newwindow.focus() }

}
