﻿function viewImage( strCode ) {

    //  Open a window to view the image.
    var objWindow = window.open("/view-image.aspx?code=" + strCode, "mywin", "height=500,width=500m,status=no,toolbar=no,scrollbars=yes");
    objWindow.focus();
}