function goto_byselect(obj, about){
	if(obj.options[obj.selectedIndex].value.indexOf("http") != -1){
		window.open(obj.options[obj.selectedIndex].value, about, "", "");
	}
}
