Thanks for the help. I will try your solution. I also found the following info on the phpfreaks.com website. Haven't tried this solution yet, but seems like it gets at what we're dealing with:
From the PHPFreaks Tutorial
"PHP Sessions IntroductionMicrosoft Internet Explorer Sessions Fix"
http://www.phpfreaks.com/print.php?cmd=tutorial&tut_id=41
"... There's a problem with IE6 that when you are using sessions and you post to a form, when you click your back button to make changes in the form, you have to click the REFRESH button on that page to get the information that you posted back into the form. This only works about 50% of the time, the other 50% the users information is lost and they have to type it over again....So, here's a solution for that. Enter this right below the session_start() of each script (yes it still must be before anything is output to the browser).
header("Cache-control: private");