function cargarResultadosEncuesta(idEncuesta,idCaja)
{
	$.ajax({
		url: "comun/resultadoEncuesta.jsp",
		data: "pIdEncuesta="+idEncuesta+"&pIdCaja="+idCaja,
		contentType: "application/x-www-form-urlencoded;charset=UTF-8",
		async:false,
		timeout: 3000,
		type: "POST",
		dataType: "html",
		beforeSend: function(objeto){
		},
		complete: function(objeto, exito){
			if(exito=="success"){
			}
		},
		error: function(objeto, quepaso, otroobj){
		},
		success: function(datos){
			$("#resultadoEncuesta").html(datos);
		}
	});
}
