The easiest way to get a link within the drop down menu to open in a customized pop up is to use the onClick event handler inside the menu item's <a> element. So instead of say:
Code:
menu1[0]='<a href="http://www.javascriptkit.com">JavaScript Kit</a>'
Change that to:
Code:
menu1[0]='<a href="#" onClick=\'window.open("http://www.javascriptkit.com", "", "width=700px,height=800px,scrollbars,resizable"); return false\' >JavaScript Kit</a>'
Be careful when nesting apostrophes- any slight misstep will cause a JS error. You can find a list of window attributes to use to customize the window (ie: scrollbars) at the bottom of this page: http://www.javascriptkit.com/jsref/window.shtml
Bookmarks