<pre>IM assuming you have something like this
<html><body>
<font size="-5"><small><center>Type your HTML below and then click Display Results.</center></font></b></small>
<form name="write">
<center><textarea cols="43" rows="7" name="display"></textarea></center>
</form>
<script language="javascript">
<!--
function writeContent() {
parent.display.document.open(); parent.display.document.write(""+document.write.display.value+""

;
parent.display.document.close();
}
//-->
</script>
<center><input type="button" onClick="writeContent()" value="Display Results"></center>
</body>
</html>
so when you click the button itll send the information you typed in the textarea field in the code above to the display frame. But what happens is it rewrites the display page each time so what you have to do is is make it so each time it writes to the display page it adds whatever you want to it itll look something like this
<script language="javascript">
<!--
function writeContent() {
parent.display.document.open();
parent.display.document.write(""+<ur tags in here>+""

; <!-- how you want the page to be diplayed -->
parent.display.document.write(""+<user input here>+""

; <!-- the users input -->
parent.display.document.write(""+<end ur tags>+""

; <!-- end everything that you put in -->
parent.display.document.close();
}
//-->
</script>
so you can jus copy this code an enter whatever tags you want...
<script language="javascript">
<!--
function writeContent() {
parent.display.document.open();
parent.display.document.write(""++""

; parent.display.document.write(""++""

;
parent.display.document.write(""++""

;
parent.display.document.close();
}
//-->
</script>
If i get what your sayin this should work... I now it may sound a little hard to understand but if you need anyfurther help feel free to email me... an also email me to tell me if it works... I will also create the whole script for you for free if you would like or cant figure it out...
p.s. Ingorne the <pre> tag thats jus to insure that the HTML stays
Matt Powell
Jammer1221@aol.com
</pre>