Hey all. I have a web site quiz thing which uses frames.

However, during the trip through this 'site', a user gets to a page in the middle frame which then links back to an 'outside' page. I want this 'outside' page to appear in place of the frames page, however I can't get this to work correctly.

_PARENT and _TOP as Targets for that link just make a new window.

So what I've had to do is make a 'top' page which has

<FRAMESET ROWS=*,0>
<FRAME SRC="frames.asp" name=master>
</FRAMESET>

(frames.asp) is the 'frames' page which divides into 3 frames.

So now I can use TARGET='master' in any link in the frames and I get the desired result, however my window shrinks by a small amount every time I go through this cycle. This is because, although I have requested a frame of 0 height, some space is still allocated for that frame.

Any suggestions???