/*prepareWindowForChar */
assign hanPrevWindow = current-window
intPrevWindowWidth = current-window:virtual-width-pixels
intPrevWindowHeight = current-window:virtual-height-pixels.
hide hanPrevWindow.
create window hanTempWindow.
assign current-window = hanTempWindow
current-window:virtual-width-pixels = 792
current-window:virtual-height-pixels = 518.
return.
END PROCEDURE.
/*retrieveWindowFromChar*/
delete widget hanTempWindow.
assign current-window = hanPrevWindow
current-window:virtual-width-pixels = intPrevWindowWidth
current-window:virtual-height-pixels = intPrevWindowHeight.
view current-window.
current-window:move-to-top().
apply 'entry':u to current-window.
return.
END PROCEDURE.