
// Miscellaneous Javascript Window Functions

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

function popupViewWin(path, width, height) {
    viewWindow = window.open(path, 'viewWin', 'width=' + width + ',height=' + height + ',resizable=yes')
    viewWindow.focus()
    }

