function Filtern()
{ 
  var Name = encodeURIComponent(document.getElementById("filter").Name.value.toLowerCase());	  
  //Name=Name.replace('\n',''); 
  var ort = encodeURIComponent(document.getElementById("filter").Ort.value.toLowerCase());
  //ort=Ort.replace('\n',''); 
	if (ort != '' && Name != ''){
	    location.replace("http://www.cylex-usa.com/"+ort+"/"+Name+".html");
	}
	else if (ort != ''){
	    location.replace("http://www.cylex-usa.com/"+ort+"/");
	}
	else if (Name != ''){
	    location.replace("http://www.cylex-usa.com/"+Name+".html");
	}
}




