function selectData()
{
	var match = document.search.surname.value.toUpperCase();
	if(match.length < 2)
	{
		alert("Please specify at least 2 letters");
	}
	else
	{
		var stub = match.substring(0, 2);
		for(idx = 0; idx < list.length && list[idx] != stub; idx += 2)
		{
		}
		if(idx == list.length)
		{
			stub = "X1";
		}
		parent.results.document.open();
		parent.results.document.close();
		parent.results.location = "Interests/" + stub + ".htm#" + match;
	}
}

function resetValues()
{
	document.search.surname.value = "";
	parent.results.location	= "results.htm";
	status = "";
}

