function goto_url(sel) {
	url = "http://" + sel.value;
	
	//document.location.href = url;
	
	var now = new Date();
	var nw = "newwindow"+now.getSeconds();

	newWindow = window.open(url, nw );
	newWindow.focus();
	
	sel.selectedIndex = 0;
}