hmmm basically this is what I have...
say page1.php
<form name="form1">
<INPUT TYPE="text" SIZE="30" NAME="field1">
<INPUT TYPE="hidden" NAME="field2">
Popup Link page 2
<submit>
</form>
page2.php
<form name="form2">
<INPUT TYPE="text" SIZE="30" NAME="field2_select">
<submit> // submits field2_select into field2 within form1 and closes popup.
</form>
So I have the value I want in a hidden field but I want to display this nicely to end user, so I want to refresh the page and then I can query the db and format based on the value of field2. but I dont want to loose what has been entered already.
perhaps js is the best bet for what I need, but noone is answering me in the js forums