
SPEED READ v2.01                                                March 1, 1999
-----------------------------------------------------------------------------
This is a maintenance release that fixes a reported Y2K related problem.
Replies created using v2.00 after 12-31-1999 are corrupt.  What should 
be a 2-byte year (00) is incorrectly packed as a 3-byte year (100).

The error is in the logic used to determine year 2000.  As such:

       if(Year>2000) then { do_special_prcessing(); }

Unfortunately, since the above code is looking for a year greater than
2000, it will not make the proper adjustment in the year equal to 2000.
The code was changed to the following:

       if(Year>=2000) then { do_special_prcessing(); }
       
Which will include year 2000.  In short this means that SPEED will only 
experience the bug in the year 2000 -- (i.e. not in 1999, 2001, or any 
year thereafter).

SRP v2.00 (32-bit version)
==========================
I no longer have the 32-bit compiler installed or access to the special 
DOS extender used to create SRP.  As such there will be no maintenance 
release for SRP.

However, as alluded to above.  SPEED v2.00 and SRP v2.00 will both begin
working correctly on 1-1-2001.

