function loadLink(url) {
	document.location.href = url;
}
			
function launchLink() {
	var casesForm = document.forms['clientcases'];
	var casesSelect = document.getElementById('clientcasesSelect');
	var linkToLoad = casesSelect.options[casesSelect.selectedIndex].value;		
	loadLink(linkToLoad);
}