
function NoticiasRefresh()
{
	dojo.io.bind({
	url: "NoticiasRefresh.aspx",
	sync: true,
	mimetype: "text/plain",
	method: "post",
	content: {idIdioma: document.getElementById("IdiomaNavegacion").value},
	load:function(type, data, evt){
		document.getElementById("MenuSuperior1_divNoticias").innerHTML = data;
	}
	});
}


function UltimaHoraRefresh()
{
	dojo.io.bind({
	url: "UltimaHoraRefresh.aspx",
	sync: true,
	mimetype: "text/plain",
	method: "post",
	content: {idIdioma: document.getElementById("IdiomaNavegacion").value},
	load:function(type, data, evt){
		document.getElementById("divUltimaHora").innerHTML = data;
	}
	});
}

function UltimosResultadosRefresh()
{
	dojo.io.bind({
	url: "UltimosResultadosRefresh.aspx",
	sync: true,
	mimetype: "text/plain",
	method: "post",
	content: {idIdioma: document.getElementById("IdiomaNavegacion").value},
	load:function(type, data, evt){
		document.getElementById("divUltimosResultados").innerHTML = data;
	}
	});
}