function zoom (src, w, h)
{
    var z_window = window.open('about:blank', z_window, 'left=' + ((screen.width - w)/2) + ',top=' + ((screen.height - h)/2 - 50) + ',width=' + (w+20) + ',height=' + (h+20));
    z_window.document.write('<title>Zoom</title><body style="margin:0px;cursor:pointer;" onClick="window.close()">');
    z_window.document.write('<table width="100%" height="100%"><tr><td align="center" valign="center">');

    z_window.document.write('<img src="' + src + '"></td></tr></table></body>');
    z_window.focus();
}
