
// Miscellaneous Javascript Window Functions

function popupWin(picture, width, height) {
    picWindow = window.open(picture, 'picWin', 'width=' + width + ',height=' + height + ',resizable=yes')
    picWindow.focus()
    }


function popupWinPrintable(picture, width, height) {
    picUrl = '/artworks/popup/' + picture;
    height += 20;
    picWindow = window.open(picUrl, 'picWin', 'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes')
    picWindow.focus()
}

function popupWinPrintableTexts(picture, width, height) {
    picUrl = '/artworks/popup_text/' + picture;
    height += 20;
    picWindow = window.open(picUrl, 'picWin', 'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes')
    picWindow.focus()
}