<!---	

function selectAll(thisSelected)	{
   for (var i=1; i < thisSelected.options.length; i++)
		if (thisSelected.options[i].selected)
		if (thisSelected.options[i].value != 'empty') {
			thisSelection = thisSelected.options[i].value;
			location.href=thisSelection;
		}
	}

	function selectSpec(thisSelected)	{
	box = document.forms[0].selectedgroep;
	destination = box.options[box.selectedIndex].value;
	if (destination)
		{var pg="&pg=" +destination}
	else
		{var pg="&pg=0"}
   for (var i=1; i < thisSelected.options.length; i++)
		if (thisSelected.options[i].selected)
		if (thisSelected.options[i].value != 'empty') {
			thisSelection = thisSelected.options[i].value;
			location.href=thisSelection+pg;
		}
	}

	function selectMode(thisSelected,selName)	{
	if (selName=='selectedgroep'){
		box = document.forms[0].selectedgroep;
		}
	else{
		box=document.forms[0].selSort;
		}
	destination = box.options[box.selectedIndex].value;
	if (destination!= 'empty'){
		location.href=destination;}
	}
	
function sendFocus()
	{
//	document.mybranch.elements.selectedbranch.focus()
	}

//--->