I tried using a doucument.write for the javascript but it<br>
didn't work. I can't remember the error at this time<br>
though. It pains me some that Netscape doesn't support <br>
IFRAMES. I tried their ILAYER but the second and 3rd<br>
panel kept comeing up a mess so I gave up on it for now.<br>
Mozillia supports my site with their latest daily build<br>
so I'm going to inform Netscape users to try that <br>
browser instead. That's one of the things I'll work<br>
on later to see if I can get it cross-browser enabled.<br>
<br>
All this code is in index.html<br>
==============================<br>
this code changes iframes<br>
news panel.<br>
<SCRIPT language=JavaScript><br>
<!-- // hide<br>
function gotocluster(s)<br>
{ <br>
var d = s.options[s.selectedIndex].value<br>
document.all.news.src=d<br>
s.selectedIndex=0<br>
}<br>
// end hide --><br>
</SCRIPT><br>
<br>
<br>
form selection to change news item.<br>
<br>
<FORM action=javascript:gotocluster(s);><br>
<SELECT onchange=gotocluster(s)><br>
<OPTION value=./news/3m.html>3M</OPTION><br>
ect.....<br>
<br>
this is what the iframe that I am changing looks like.<br>
<br>
<IFRAME id=news src="./news/linux.html"><br>
</IFRAME><br>
<br>
end of index.html code<br>
===============================<br>
<br>
<br>
news.html code<br>
==============================<br>
this code is in body of the news html<br>
document. There's code above and<br>
below it to process the file this brings<br>
in.<br>
<SCRIPT LANGUAGE="Javascript" <br>
SRC="<A HREF="
TARGET="_new">
</SCRIPT><br>
<br>
Right now I have one of these documents for each news item (248 pages) So what I'm looking for is a way to pass something from index.html to the news html such that I only need one of the documents instead of 248. I can see how<br>
I could use the innerHTML to change the javascript SRC=<br>
once I get something passed to the news html, but this <br>
is were my newness to javascript fails me. <br>
<br>
The address of page I'm working on is <A HREF="
TARGET="_new">
I'm using it as kind of a training exercise to learn<br>
html and java. Three months ago I could hardly spell HTML, but I think I've come aways since. It's sitting behind <A HREF="
TARGET="_new">
on my computer at home at this time, also the site 24link has frames so you will have to download the page if you want to see more. I hope I've finally made clear my problem (other than my rank newness to all of this).