function show_docs(root) {
	var country = document.formular_form.country.value;
	var client = document.formular_form.client.value;
	
	if(country && client) {
		//alert(country+" : "+client);	
		top.location = root+"dokumente_formulare/"+client+"/"+country+".html";
	} else if(country) {
		alert("Bitte wählen Sie eine Kundenart aus.");
	} else if(client) {
		alert("Bitte wählen Sie ein Land aus.");
	}
}


function show_docs_jumbo(root) {
	var country = document.formular_form.country.value;
	
	if(country) {
		top.location = root+"jumbo/dokumente_formulare/"+country+".html";
	} else {
		alert("Bitte wählen Sie ein Land aus.");
	}
}