/*
 * Search -  Javascript
 *  
 * Copyright (c) 2008 ServerMX Online (servermxonline.com)
 *
 */
 
 
function Search_Property() {
		
		$.ajax({
		  url: "search.process.php",
		
		  type:'GET', 
		  data: "country="+$("#search_property_country").val()+"&type="+$("#search_property_type").val() +"&price="+$("#search_property_price").val()+"&nobeds="+$("#search_property_nobeds").val(),
		  cache: false,
		  
		  beforeSend: function(html) {
			$("#result-container").html('<br/><br/><br/><br/><center><img src="images/ajax.gif"><br/><br/>Loading...</center>');
		  },
		  success: function(html) {
			$("#result-container").html(html);
		  }		  
		});	
		
}

function Search_Property_Pagination(urlThis,dataThis,limit,start) {

		$.ajax({
		  url: urlThis,
		
		  type:'GET', 
		  data: dataThis+"&limit="+limit+"&start="+start,
		  cache: false,
		  
		  beforeSend: function(html) {
			$("#result-container").html('<br/><br/><br/><br/><center><img src="images/ajax.gif"><br/><br/>Loading...</center>');
		  },
		  success: function(html) {
			$("#result-container").html(html);
		  }		  
		});	
		
}