function Filtern(ort,urlort,urlstaat,staat)
{ 
  var Name = encodeURIComponent(document.getElementById("filter").Name.value.toLowerCase());	
  Name=Name.replace('\n',''); 
  //location.replace("/business-directory-" + urlstaat + "-" + ort + "/l1c1-aus-o1c1-" + "-p1c1--b1c1-0-s1c1-" + "-n1c1-" + Name + ".html");
  //location.replace("/business-directory-" + urlstaat + "-" + ort + "/l1c1-aus-o1c1-" + urlort + "-p1c1--b1c1-0-s1c1-" + staat + "-n1c1-" + Name + ".html");
  //location.replace("/business-directory-" + urlstaat + "-" + ort + "/l1c1-usa-o1c1-"+ urlort + "-p1c1--b1c1-0-s1c1-" + staat + "-n1c1-" + Name +".htm");
  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");
  }  
}

