function SavedItems(product_id)
{
	if(product_id != '')
	{
		$.ajax({
		  type: "POST",
		  url: $('#base').val()+"ajax_functions.php",
		  data: "action=add_to_saved_items&product_id="+product_id,
		  cache: false,
		  success: function(html){
			  alert("Product saved in your list successfully");
		  }
		});
	}
}


function showCountyInfo()
{
	url = $("#county_id option:selected").text();
	window.location.href=$('#base').val()+'countyinfo/'+url;
	return false;
}

