function moveEntry(to, from){
	for(i=from.length-1; i >= 0; i--){
		if(from.options[i].selected){
			option = from.options[i];
			from.options[i] = null;
			to.options[to.length] = option;
		}
	}
}

function selectAll(inForm){
	for(i = inForm.members.length - 1; i >= 0; i--){
		inForm.members.options[i].selected = true;
	}
	
}

