// JavaScript Document
function image_zoom(image,high,wide)
{
    ImageWindow = window.open ('ViewImage.asp?img=' + image, 'ImageWindow', config='height='+high+', width='+wide+', toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no')
    ImageWindow.focus();
}
