Do you mean use a drop down menu to launch a DHTML window based on the value of the selected option? Something like this would work:
Code:
<script type="text/javascript">
function loadwindow(selectedoption){
iframewin=dhtmlwindow.open("examplebox", "iframe", selectedoption.value, selectedoption.text, "width=590px,height=350px,resize=0,scrolling=1,center=1")
}
</script>
<select onChange="loadwindow(this.options[this.selectedIndex])">
<option value="http://google.com">Example</option>
<option value="http://yahoo.com">Example 2</option>
<option value="http://digg.com">Example 3</option>
</select>
Bookmarks