cbsarge, I stumbled on your dialogue and found it interesting. Here is an example of how I worked it out some time back, if I understand your query correctly:
<SCRIPT language="JavaScript"
type="text/javascript">
<!--
function popemup( url ){
newWin = window.open(url,'','height=750,width=875,scrollbars=yes,left=270, top=50');
newWin.document.write("<head><title>"+ url +"<\/title><\/head>");
newWin.document.write("<iframe src=" + url + ">" +"<\/iframe>");
newWin.document.write("<p align=center>");
}
-->
</SCRIPT>
</head>
<body bgcolor=#ffffcd>
<center><h1>Passing URL's to Iframe Source</h1></center>
<p>
<p> <p>
<div align=center>
<table width=95%>
<tr>
<td width=33% align=center><a href="javascript

opemup('
</td>
<td width="*" align=center><a href="javascript

opemup('
</td>
<td width=33% align=center><a href="javascript

opemup('
Office</a> </td>
</tr>
</table>
It's a simple little table with links which pass the URL to the popup routine which builds and displays the page requested. This is not exactly what you were asking, but in your user's form you could pass the info via the OnClick, perhaps, in a similar fashion. Like vragabond says, you'll have get Javascript involved somehow to perform what you intend.