Thanks for the reply,
I have this javascript:
----
<SCRIPT>
function fnAppend(){
var oNewNode1 = document.createElement("input"

;
var oNewNode2 = document.createElement("input"

;
var oNewNode3 = document.createElement("input"

;
var oNewNode4 = document.createElement("br"

;
oList.appendChild(oNewNode1);
oList.appendChild(oNewNode2);
oList.appendChild(oNewNode3);
oList.appendChild(oNewNode4);
}
</SCRIPT>
<BODY>
<form name=info action="....">
<table border=1>
<tr>
<td>Name Age Dept.</td>
</tr>
<tr><td>
<div ID = oList>
</div>
<div>
<input name="button"
type = "button"
onClick = "fnAppend()"
value = "Add">
</div></td></tr>
</table>
</form>
</BODY>
-------
Now I can add text box using this code, my question is how to pass those entered data as paramenters to next page(or display somewhere on this current page)?