function conexion_ban()
{
	var xmlhttp=false;	try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
 	} catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); 
 	} catch (E) { xmlhttp = false; } } 
	if(!xmlhttp && typeof XMLHttpRequest!='undefined') { 
	xmlhttp = new XMLHttpRequest();
	} return xmlhttp;
}

function cargar_banners(numero)
{	
	
	h = conexion_ban();
	h.open("GET","llamarbanners.php?numero="+numero,true);
	h.onreadystatechange=
	function()
	{
		if (h.readyState==4)
		{
			document.getElementById('tabla_cargarbanners').innerHTML=h.responseText;
		}
	}
	h.send(null);
	
}