function Navigation(form)
{
	switch (form.cboNav.value)
	{
		case "sep":
			alert ("Please select an actual item.");
			break;
		case "title":
			alert ("Please pick an element below this title.");
			break;
		default:
			window.location=form.cboNav.value;
	}
}
