Open A Jump Menu in a new window

This is for Macromedia DreamWeaver, but it can be applied to any Jump Menu using the right JS function.
HTML:

 
original:
<select name=”nameOfYourMenu” onChange=”MM_jumpMenu(’parent’,this,0)”>
 
change to:
</select><select name=”nameOfYourMenu”
onChange=”MM_jumpMenu(’window.open()’,this,0)”>
 

Creating HTML Links

This Tutorial goes to GlowintheDark, his question was:
u know like on a web site how can i link another website so when they click it automaticaly takes them there?
Ok,
this is really easy all you have to use is the <a> </a> tag. Let me give you
an example so you [...]