|
It is becasue your changePage function only refers to the first select box, you could modify it like this:
<script type="text/javascript">
function changePage(uri){
newPage=window.open(uri,"NewPage","height=480,width=640,location=no,scrollbars=yes,menubar=no,toolba r=no,resizable=yes,status=yes");
}
</script>
then in each of the select tags do something like this:
<select name="pages" size="1" onChange="changePage(this.options[this.selectedIndex].value);">
<select name="creative" size="1" onChange="changePage(this.options[this.selectedIndex].value);">
<select name="other" size="1" onChange="changePage(this.options[this.selectedIndex].value);">
This way you are passing in the value for the page you would like to go to.
|