8mycsh
11-08-2002, 11:12 PM
Ok here goes....I have looked at other posts that deal with this but I still can't get it to work.
I have a page with a drop down menu on the parent that has 9 items in it. 8 items open in the parent but the last item in the menu I want to open a pop up window. Now I also I have a link on the parent page to open a different pop up window.
Can someone help me with the coding for the drop down menu I have got the coding for the regular hyperlink.
Here is the coding I have so far:
Top of page
-------------------------------------------
function newWindow(url,target){
open(url,target,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=1,resizable=n o,width=690,height=400');}
-------------------------------------------
Regular Link
------------------------------------------
<a href="http://www.thissite.com/fillin.htm" target="fillin" onclick="newWindow(this.href,this.target);return false;">
Drop Down Menu
-----------------------------------------
<select onChange="location=options[selectedIndex].value;" style="font-family:'Arial';color:#8C96A2;background-color:#FFFFFF;font-size:10pt;">
<option value="#">Please Choose...</option>
<option value="home.htm">Home</option>
<option value="form.htm">Consent Form</option>
<option value="payment.htm">Payment</option>
<option value="counselling.htm">Counselling</option>
<option value="research.htm">Research</option>
<option value="seminars.htm">Seminars</option>
<option value="about.htm">About Us</option>
<option value="contact.htm">Contact Us</option>
<option value="links.htm">Links</option>
<option value="????????">Appointments</option>
</select>
Thanks in Advance.
I have a page with a drop down menu on the parent that has 9 items in it. 8 items open in the parent but the last item in the menu I want to open a pop up window. Now I also I have a link on the parent page to open a different pop up window.
Can someone help me with the coding for the drop down menu I have got the coding for the regular hyperlink.
Here is the coding I have so far:
Top of page
-------------------------------------------
function newWindow(url,target){
open(url,target,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=1,resizable=n o,width=690,height=400');}
-------------------------------------------
Regular Link
------------------------------------------
<a href="http://www.thissite.com/fillin.htm" target="fillin" onclick="newWindow(this.href,this.target);return false;">
Drop Down Menu
-----------------------------------------
<select onChange="location=options[selectedIndex].value;" style="font-family:'Arial';color:#8C96A2;background-color:#FFFFFF;font-size:10pt;">
<option value="#">Please Choose...</option>
<option value="home.htm">Home</option>
<option value="form.htm">Consent Form</option>
<option value="payment.htm">Payment</option>
<option value="counselling.htm">Counselling</option>
<option value="research.htm">Research</option>
<option value="seminars.htm">Seminars</option>
<option value="about.htm">About Us</option>
<option value="contact.htm">Contact Us</option>
<option value="links.htm">Links</option>
<option value="????????">Appointments</option>
</select>
Thanks in Advance.