<!--
// This is the function that pops up a picture in a new window.
//window.name = "currentWindowName";
var newWin;
var details, newHeight, newWidth;
function popPicture(image_url, i_height, i_width) {
details = "scrollbars, resizable, status=0, height=" + (i_height+20) + ", width=" + (i_width+20) + "";
newWin=window.open(image_url, '', details);
newWin.focus();
return false;
}
// END function popPicture().

//-->
