_NAME_ get_seconds_since_1996_from_day_1996 _PROTOTYPE_ secondsSince1996 = get_seconds_since_1996_from_day_1996(day1996) _SHORT-DESCRIPTION_ Get the number of seconds-since-1996 from the day-of-1996 _DESCRIPTION_ get_seconds_since_1996_from_day_1996 returns the seconds-since-1996 corresponding to the zeroth second of the day day1996. Be aware that day1996 = 1 is defined as 1/1/96. _SHORT-CODE-SAMPLE_ day1996 = 700 secondsSince1996 = get_seconds_since_1996_from_day_1996(day1996) print, 'The number of seconds since 1996 at the start of day1996 = ', $ day1996, ' is ', secondsSince1996 _INPUT_ * day1996 is the day-of-1996 of interest. _OUTPUT_ * The number of seconds-since-1996 (which corresponds to the values of the spacecraft clock's time stamps on all data.)