Noframes Content
This tag allows readers without frames-enabled browsers to view your page. The most common use of this tag is to dictate what browser people should use:
<frameset rows="10%,*">
<frame name=toc src="toc.html">
<frame name=home src="home.html">
<noframes>
This document is framed. Go to <a href="http://www.microsoft.com/">Microsoft< or <a href="http://www.netscape.com/">Netscape< to get a better browser!
</noframes>
I believe that this is a mistake. Why are you driving people away from your pages? It is really easy to direct people to the first page of your frameset within the noframes tag. Just add in:
<noframes>
This document is framed, however, you can view the page at <a href="home.html">home.html</a>
</noframes>
If you're willing to spend a small amount of extra time, you can copy in the contents of your main page into the <noframes> portion of your frameset. This will result in very little loss of quality for your frameless readers. They will be more likely to come back and read your page again, and that's the goal, isn't it?

