If you want a new window, you will have to work from the code in your original post. But if you want to use DHTML Window, you can access the launching page from the DHTML Window - in most cases with parent.whatever, example:
Code:
parent.document.getElementById('someid').innerHTML = 'it works!';
To apply this to your particular DHTML Window, at least as I understand it - what your asking, in the DHTML Window you could have something like:
Code:
<select name="somename" onchange="parent.document.getElementById('mytext').value = this.value;">
<option value="thefirst">One</option>
<option value=thesecond"">Two</option>
<option value="thethird">Three</option>
</select>
And on the page that launched the DHTML window:
Code:
<input type="text" id="mytext" value="thefirst">
If you want more help, please post a link to a page on your site that shows your best attempt at doing this.
Bookmarks