function AvaliacaoUpdate(valor, id_documento) { var imgtotal = "http://www.calecalcariodoparana.com.br/includes/templates/padrao/imagens/aval.total_"; var cheio = "http://www.calecalcariodoparana.com.br/includes/templates/padrao/imagens/aval.user_2.gif"; var vazio = "http://www.calecalcariodoparana.com.br/includes/templates/padrao/imagens/aval.user_0.gif"; if( (valor==4 && window.document.getElementById(id_documento+"aval_user"+valor).src==cheio) || ( window.document.getElementById(id_documento+"aval_user"+valor).src==cheio && window.document.getElementById(id_documento+"aval_user"+(valor+1)).src==vazio ) ) { for(i=0; i<5; i++) { window.document.getElementById(id_documento+"aval_user"+i).src=vazio; } valor = 0; } else { for(i=0; i<5; i++) { if (i<=valor) { window.document.getElementById(id_documento+"aval_user"+i).src=cheio; } else { window.document.getElementById(id_documento+"aval_user"+i).src=vazio; } } valor=(valor+1)*2; } // impede que apresente o nome da imagem. cheio = "0 0 0 0 0 0 "; var status = AjaxRequest.get( { 'url' : 'http://www.calecalcariodoparana.com.br/includes/avalia.php', 'parameters' : { 'id_documento' : id_documento, 'voto' : valor}, 'onSuccess' : function(req) { resultado = req.responseText.split(" "); window.document.getElementById(id_documento+"aval_qtd").innerHTML = resultado[0]+" votos"; for (i=1; i<6; i++) { window.document.getElementById(id_documento+"aval_total"+(i-1)).src = imgtotal+resultado[i]+".gif"; } } } ); }