View Full Version : frames and windows


bismillah
03-17-2006, 11:26 PM
Hello,

My page is madeup of five frames.four of those make a border around screen.Middle one where i want all contents to appear.Top frame has menu, upon clicking that menu, a new window popsup outside(my.html) the frames.That window contains some links that i want to open in main frame(middle).

Code works fine upto poping up new window but then i can't figure out how to setup and direct links from that window back to main frame(middle frame)

*loaded page*
<FRAMESET ROWS="20,*,12" FRAMEBORDER=0 BORDER=0 >
<FRAME NAME="top" SRC="yellow1.html" MARGINHEIGHT=0 MARGINWIDTH=0 SCROLLING=NO NORESIZE>
<FRAMESET COLS="15,*,25" FRAMEBORDER=0 BORDER=0 >
<FRAME NAME="left" SRC="blue1.html" MARGINHEIGHT=0 MARGINWIDTH=0 SCROLLING=AUTO NORESIZE>
<FRAME NAME="main" SRC="red.html" MARGINHEIGHT=0 MARGINWIDTH=0 SCROLLING=1 NORESIZE>
<FRAME NAME="right" SRC="cyan.html" MARGINHEIGHT=0 MARGINWIDTH=0 SCROLLING=AUTO NORESIZE>
</FRAMESET>
<FRAME NAME="bottom" SRC="green.html" MARGINHEIGHT=0 MARGINWIDTH=0 SCROLLING=NO NORESIZE>
<NOFRAMES>

1) Your browser is incapable of Frames, you should consider upgrading to a newer version.. or<BR>

</NOFRAMES>
</FRAMESET>

*yellow1.html*

<body topmargin="0" leftmargin="0" bgcolor="#A06AA0">
<table><tr><td nowrap>
[<a href="my.html" target="_blank"><font color="#ffffff">my doc</font></a>]
</td></tr></table>
</body>

*my.html*

<BODY TEXT="#000000" LINK="black" VLINK="BLACK" ALINK="#FF301F">
<BODY BGCOLOR="#99CC99">

<table border="0" cellpadding="5" cellspacing="5" width="100%">

<tr align="center"><td><a href="../index.html"><u>Home Page</u></a></td><td></tr><br><b><font size="1"><div align="center">bla bla</div></font></b>
</table><br>
<center><font size="6" color="cc0033"><strong><u>Full Screen</u></strong></font></center><br><br><br>
<table width="100%" border="0" align="center" summary="">
<tr>
<td><a href="soso.html" target="main"><b><font color="#ffff00"><u>Debate</u></font></b></a></td>
<td><a href="soso1.html" target="main">b><font color="#ffff00"><u>Debate</u></font></b></a></td>
<td><a href="soso.html2" target="main">)"<b><font color="#ffff00"><u>Debate</u></font></b></a></td>
<td><a href="soso.html" target="main"><b><font color="#ffff00"><u>Debate</u></font></b></a></td>
.
.
.
.
.
so on and so forth.
</tr>

* cyan.html*
<BODY BGCOLOR="#A06AA0">
</BODY>

* blue1.html*
<BODY BGCOLOR="#A06AA0">
</BODY>

*green.html*
<BODY BGCOLOR="#A06AA0">
</BODY>

*red.html*
<BODY BGCOLOR="#000000" valign="top">
</BODY>
thanks in advance