﻿// JScript File
function OpenImage( pdtID, fieldName, wHeight, wWidth ) {
    if ( !wHeight ) wHeight = 600;
    if ( !wWidth ) wWidth = 600;
    window.open( "ntPhotoZoom.aspx?pdtID=" + pdtID + "&fieldName=" + fieldName + "&wHeight=" + wHeight + "&wWidth=" + wWidth, "NexxtSolutions", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=" + wWidth + ",height=" + wHeight + ",left="+(screen.width-wWidth)/2+",top="+(screen.height-wHeight)/2 );

}

