What is the difference between a windows scrollbar and a frame scrollbar?
Do you mean you want the entire page to scroll, not just the frame? Kind of like what Google Video does?
Have you tried:
overflow: scroll;
That makes a scroll bar for just the frame/div that has overflow, so that might be opposite of what you want. But anything more than that would depend on the situation. For instance:
=============================================================
| |
| Frame with text. |
| Maybe it doesn't fit into frame height. |
|-----------------------------------------------------------|
| |
| |
| Main Page |
| |
| |
| |
| |
=============================================================
Now, how would the user scroll down that top frame if the scroll bar is along the entire page?
Also, if you are using actual frames, ie a frameset, you should probably consider ditching that for positioned divs. Not just because I'm less familiar with framesets, but also because frames are quickly becoming obsolete for css-based alternatives.