/*function changeRecPage(changethis,statusNem) {
	GoTo('thisPage?event=none.SearchResultModule(kc='+kc+';st='+statusNem+';recPage='+changethis+';msv='+msv+';)');
}
function change_page(changethis,statusNem) {
	GoTo('thisPage?event=none.SearchResultModule(kc='+kc+';st='+statusNem+';goToPage='+changethis+';msv='+msv+';)');
}
function goToList() {
	GoTo('thisPage?event=none.SearchResultModule(kc='+kc+';msv='+msv+';st=0;)');
}*/
function expand() {
	document.getElementById("expandImg").style.display ="none"
	document.getElementById("filterTable").style.display ="block"
}
function collapse() {
	document.getElementById("expandImg").style.display ="block"
	document.getElementById("filterTable").style.display ="none"
}
function filterSoaResult() {
	var canton = document.getElementById("canton").value
	var occupation = document.getElementById("occupation").value
	var keyTerm = document.getElementById("keyTerm").value
	var country = document.getElementById("country").value
	GoTo('thisPage?event=none.SearchResultModule(kc='+kc+';country='+country+';canton='+canton+';occupation='+occupation+';keyTerm='+keyTerm+';msv='+msv+';)');
}  
function changeCantons(indexCountry) {
	if (indexCountry=="ch") 
		document.getElementById("cantonsOptions").innerHTML = "<select name=\"canton\" id=\"canton\" style=\"width:110px\"><option value=>"+_all+"</option>"+co_ch+"</select>"
	if (indexCountry=="de") 
		document.getElementById("cantonsOptions").innerHTML = "<select name=\"canton\" id=\"canton\" style=\"width:110px\"><option value=>"+_all+"</option>"+co_de+"</select>" 
	if (indexCountry=="at") 
		document.getElementById("cantonsOptions").innerHTML = "<select name=\"canton\" id=\"canton\" style=\"width:110px\"><option value=>"+_all+"</option>"+co_at+"</select>" 

	if (indexCountry=="ch") 
		document.getElementById("cantonDescr").innerHTML = _cantons
	else
		document.getElementById("cantonDescr").innerHTML = _canton_x
}