//function to pop open the little windows for bigger images
//re-written 19 sept 2002 to take window dimensions as a variable  (+15, +100)
<!--
function openImage(page, pwidth, pheight) {
var features =
        'width='        + pwidth +
        ',height='      + pheight +
        "dependent=1,menubar=0,toolbar=0,scrollbars=0,location=0,statusbar=0,resizable=0"
    window.open(page, "newWindow", features);
}
//-->
