﻿// JScript File
function dp(target, imageId, attId, size, width, height) {
    // NOTE: There is also a dp function in Admin/inc/gallery.js
    if (width > 0){
        win = window.open(target + '&id=' + imageId + '&att=' + attId + '&size=' + size+ '&width=' + width+ '&height=' + height, 'Popup', 'location=1,toolbar=no,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height);
    } else {
        win = window.open(target + '&id=' + imageId + '&att=' + attId + '&size=' + size, 'Popup', 'location=1,toolbar=no,scrollbars=yes,resizable=yes,width=850,height=350');
    }
    win.focus();
    return false;
}

