function recargar(){
	var destino = 'ALL';
	var subarea = 'ALL';
	var mes = 'ALL';
	var origen = 'ALL';
	
	var aux = document.getElementById('destino').value;
	
	if(aux.substring(0,1) == '#'){
		subarea = aux.substring(1);
	}else{
		destino = aux;
	}
	
	mes = document.getElementById('mes').value;
	origen = document.getElementById('origen').value;
	
	var call = new ajaxObject('oferta_orizonia.php');
 	call.load('ofertas_orizonia', {destino: destino, subarea: subarea, mes: mes, origen: origen, ajax: true}, 'POST');

}

function recargar_ajax(){
	var destino = 'ALL';
	var subarea = 'ALL';
	var mes = 'ALL';
	var origen = 'ALL';
	
	var aux = document.getElementById('destino').value;
	
	if(aux.substring(0,1) == '#'){
		subarea = aux.substring(1);
	}else{
		destino = aux;
	}
	
	mes = document.getElementById('mes').value;
	origen = document.getElementById('origen').value;
	
	var call = new ajaxObject('/ultima-hora/oferta_orizonia_ajax.php');
 	call.load('ofertas_orizonia', {destino: destino, subarea: subarea, mes: mes, origen: origen, ajax: true}, 'POST');

}

function recargarphp(){
	var destino = 'ALL';
	var subarea = 'ALL';
	var mes = 'ALL';
	var origen = 'ALL';
	
	var aux = document.getElementById('destino').value;
	
	if(aux.substring(0,1) == '#'){
		subarea = aux.substring(1);
	}else{
		destino = aux;
	}
	
	mes = document.getElementById('mes').value;
	origen = document.getElementById('origen').value;
	
	var aux = document.location.href.split('?');
	var url = aux[0];
	
	
	url += '?destino='+destino+'&subarea='+subarea+'&mes='+mes+'&origen='+origen;
	
	document.location.assign(url);
}

function cargar_recomendacion(cod,precio,fechas,origen,noches){
	var call = new ajaxObject('/cargar_recomendacion_oferta.php');
	call.onComplete = function (response){
	 	if(response != 'KO'){
	 		document.location.assign(response);
	 	}
	}
	call.send({cod: cod, precio: precio, fechas: fechas, origen: origen, noches: noches}, 'POST');
}
