function fGotoLoc(oList)
{
	var vNewLoc = oList.options[oList.selectedIndex].value;
	if (vNewLoc == "-") return false;
	window.location.href=vNewLoc;
	return false;
}

