function surfto(form)
{

        var myindex=form.dest.selectedIndex
	var getstring=form.dest.options[myindex].value
	
	if (getstring != "header")
	{
	var strArray = getstring.split(",")

	var url = strArray[0]
	var target = strArray[1]
	
	if (target == "_blank")
	{
	window.open(url);
	}
	else
	{
	window.location.href = url;
	}
	}

}
