function switchUser(selector)
{
	if (! selector)
	{
		return(true);
	}

	var si = selector.selectedIndex;
	var id = selector.options[si].value;

	var link = '/profile/' + id;
	document.location.href = link;

	return(false);
}
