﻿<!--
    //this function pops up a new window with the dimensions specified.
    function popup(filename, imageWidth, imageHeight) {
        //declare local variables...
        var width = imageWidth + 100;
        var height = imageHeight + 150;
        
        //pop up window at the requested dimensions.
        var win = window.open(filename, 'InventoryItem', 'width=' + width + 'px, height=' + height + 'px, location=no, menubar=no, resizable=no, scrollbars=no, titlebar=yes, toolbar=no, status=yes', false);
    }
//-->