function urlSelected(el) {
	var url = el.options[el.selectedIndex].value;
	if(url!=null && url.length>0)
		window.top.location.href = url;
}
