Sorry, I've already changed all of the code but this is basically what I
followed and what I changed to.
This is the method that I was useing when I was having problems. The
thing I didn't like about this was that I had to have a different
funtion definition for each of the drop-down boxes but I was probably
doing something wrong. Also, it would work in IE but not NN and I wasn't
useing the form tags. When I used the form tags it wouldn't work in
either one, again I'm sure I was doing something wrong.
========================BEGIN============================================
<select id="setit" onchange="launchit()">
<option value="">Select one</option>
<option
value="javascript:window.open('
http://www.altavista.com')">AltaVista</option>
<option
value="javascript:window.open('
http://www.yahoo.com')">Yahoo</option>
<option
value="javascript:window.open('
http://www.google.com')">Google</option>
</select>
<script language="javascript">
function launchit(){
eval(setit.options[setit.selectedIndex].value);
}
</script>
========================END============================================
This is what I changed over to. I got this from Dreamweaver and verified
that it worked in IE and NN. This is right from the page and I think it
is much cleaner and it works in both IE and NN. The function at the top
works for all of the drop-down boxes.
========================BEGIN============================================
<script language="JavaScript" type="text/JavaScript">
<!--
function AO_GetDocument(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body>
<form action="" method="post" name="form1" target="_blank">
<select name="Members" onChange="AO_GetDocument(value,'','')" size="1">
<option value="">Please Choose a Form........................</option>
<option value="documents/members_agent_contract.pdf">Members Agent
Contract</option>
<option value="documents/members_application.pdf">Members
Application</option>
<option value="documents/members_highlights.jpg">Members
Highlights</option>
<option value="documents/policy-members.pdf">Policy Members</option>
</select>
</form>
========================END============================================
Yes - that's Norton's skullduggery.
Could you show me your code starting with <form> and ending with </form>?