	function SetBar()
	{

		var sHREF = document.location.href;
		var iPos  = sHREF.lastIndexOf("/profiles/");
		var sHTML = sHREF.substring(iPos+10, sHREF.length-1);

		var iSet = 0;

		for (i=1; i<=document.frmProfiles.lstSelectBarrister.length - 1; i++)
			{
			sVALUE = document.frmProfiles.lstSelectBarrister[i].value;
			iPos = sVALUE.lastIndexOf(sHTML);
			if (iPos > 0) {
				iSet = i-1;
			}
		}
	
		document.frmProfiles.lstSelectBarrister.selectedIndex = iSet+1;
	}

	// Show the barrister profile selected from the quick nav list
	function ShowBar()
	{
		var i = document.frmProfiles.lstSelectBarrister.selectedIndex;
		var h = document.frmProfiles.lstSelectBarrister[i].value;
		if (h!="") window.location = h;
	}
