//esta es la basada en db
function carga_lista_ofertas(pagina, s, id_seccion) {
	document.getElementById('bloqueDinamico').innerHTML = "<span style=\"font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; font-weight:bold; color:#666666 \">Cargando...</span>";
    if(window.XMLHttpRequest) { peticion = new XMLHttpRequest(); }
    else { peticion = new ActiveXObject("Microsoft.XMLHTTP"); }
    peticion.onreadystatechange = muestraOfertas;
    peticion.open('GET', 'http://www.celtictravelservices.com/secciones/00_estructuras/4_boxes_db/lista_ofertas_tabla_db.php?&pag='+pagina+'&id_seccion='+id_seccion+'&s='+s, true);
    peticion.send(null);
  }
  
function muestraOfertas() {	
    if(peticion.readyState == 4) { if(peticion.status == 200) { document.getElementById('bloqueDinamico').innerHTML = peticion.responseText; }}
  	}
