FSEEK chnl:integer, byte:integer, position:integer

Position to any random location within a file
bytes is the number of bytes to move (+/-) relative to position
position is the base location to start the seek from:

     SEEK_SET (0) for the beginning of the file  
     SEEK_CUR (1) for the current file pointer location  
     SEEK_END (2) for the end of the file  

See also: FRewind