// JavaScript Document
var selectmenu=document.getElementById("mymenu2")		
selectmenu.onchange=function(){
	var chosenoption=this.options[this.selectedIndex] 
	if (chosenoption.value!="{$selected}"){
		window.location = chosenoption.value; //open target site (based on option's value attr) in new window		
	}
}
