
function NavegarVideosPaginado(idpagina)
{
    document.Form1.hdPaginado.value=idpagina;
    document.Form1.submit();
}

function SeleccionarVideo(IdVideoSeleccionado)
{
	
	dojo.io.bind({
		url: "VideoCargarMundial.aspx",
		sync: true,
		mimetype: "text/plain",
		method: "post",
		content: {idVideo: IdVideoSeleccionado},
		load:function(type, data, evt){
			document.getElementById("nsVideo").innerHTML = data;
		}
	});	
}