function jumpToTeam(o) { 
if(typeof(o.options[o.selectedIndex].value) != "undefined") {
	var team = String(o.options[o.selectedIndex].value);
    if(
		team.indexOf("http://") != -1 || 
		team.indexOf("www.") != -1
	) {
        window.open(team,"new","");
    } else {
        document.location.href = "" + team;
    }
}
}

