Page is a not externally linkable
littleman - 7:44 pm on Sep 8, 2000 (gmt 0)
Your problem is here:
<frame name="site" src="http://www.littlewebwizard.com">
Your frame is loading itself . So your frame is loading a frame which is in turn loading a frame and so on.
Want to have some fun? Lode it in netscape and see what happens.
So if you fix the frame tag to point to the frame page you will fix the problem
It should look something like this.
<frame name="site" src="http://www.littlewebwizard.com/main.html">
or
<frame name="site" src="http://www.littlewebwizard.com/top.html">
or something like that.