function navi(obj) {
	url = obj.options[obj.selectedIndex].value;
	if(url != "") {
	if(url.substring(0,7) == "http://") {
		newBrowser = window.open(url,"_self");
	} else {
	location.href = url;
	}
	}
}

