OK, I feel dumb for posting a question and an answer in the same hour, but I figured out that the default security settings for Netscape 7 for some reason do not accept a cookie to be set if a redirect is followed immediately. So what I did is create a simple meta refresh of 3 seconds (instead of using header(Location🙂 and every thing is great. Thanks. I hope this helps some one else.
Here is the code i used to redirect:
echo'<meta HTTP-EQUIV="Refresh" CONTENT="3;URL=index.php?page=chk_order">';
where "3" is the seconds before redirecting and "index.php?page=chk_order" is the url.
-Sean