on your popup window:-
use a your database scripting (php/asp/.net) to load the data into a form fields.... Upon close proccess your selected form value (checked item) and use javascript to to pass back the selected data on this popup window to its parent window.....
Example Javascripts:
Quote:
<script type="text/javascript">
window.opener.document.getElementById("PARENT_FORM _FIELD_ID").value = 'YOUR VALUE TO PASS BACK';
</script>
|
'window.opener" is your parent window....