function performSearch (orderBy) {

	var error = false;

	//  Check parameters
	if ($("name").value == "" && $("ort").value == "" && $("plz").value == "") {
		error = true;
	}
	
	if (error == true) return;

	var opt = {	method: "post",
					postBody: "orderBy=" + orderBy + "&" + Form.serialize("therapyForm"),
					onSuccess: function(t) {
						$("searchResults").innerHTML = t.responseText;
					}
					}

	new Ajax.Request("therapeutensuche/therapysearch.php", opt);

}

function getProfile(id) {

		lightBox.setLightboxSettings(445, 250);
		var opt = {	method: "post",
						postBody: "ID=" + id,
						onSuccess: function(t) {
							$("lightboxContent").innerHTML = t.responseText;
						}
      }

		new Ajax.Request("therapeutensuche/profil.php", opt);
		lightBox.showLightbox();
      
		return false;

}
