Thanks...I'll keep that in mind.
In the meantime, I've started using an iframe.
First off, do I need to have select dropdowns on my parent within a form to work? That's the way it's set up now.
I also need to submit a form from the parent that's within the childs iframe but forget how.
I also need to call different pages into the iframe from the parent onchange.
Thanks
mainpage.html (parent)
<form name="bob" etc>
<select name="fred" onchange=?>
<option value="page22.html">Insert page22 in iframe</option>
</select>
<iframe name="betty" src="page.html"></iframe>
<input type="submit" onclick="submit form in page22 that's within the iframe" value="send">
</form>
page22.html (child within parent's iframe)
<form name="mary" etc>
<textarea name="sam"></textarea>
</form>