I have a 3 frame window. When you type an address in the top it loads it in the middle. This works well but I need to dynamically load a small javascript function into the page that loads. I didn't know if it was possible to just throw it in there some how or if I have to copy the entire contents of the web site into an array which already holds the script....and if this was the case I am not even sure how to do it. If anyone can help that would be great.
Thanks in advance.
Rob
-- EDIT --
Ok, I decided to use IFrames instead of normal frames. So now I have 3 iFrames called Top, Middle, Bottom. I have a textbox in top that I want users to type an address in and it opens that page in middle....but I can't figure it out. I have tried many variations of...
window.frames['middle'].location.href=window.frames['title'].document.forms[field1].value;
What am I doing wrong?
Thank you again