function gotoURL(obj)
{
	var url = "node.php?id=" + obj.options[obj.selectedIndex].value;
	if (url.length > 0)
	{
		window.location.href = url;
	}
}

