publicacaoId = '49868'; var comment = new Array(); function getComments(id) { if (comment[parseInt(id)] == null) { document.write('0'); } else {document.write(comment[parseInt(id)]); } } function getNumberOfComments(id) { if (comment[parseInt(id)] == null) { return 0; } else { return comment[parseInt(id)]; } } function goToComments(id) { var valor = id; for (i = 0; i < valor.length; i++) { ch = valor.charAt(i); if (ch < '0' || ch > '9') { alert('O id deve ser um número inteiro'); return; } } if (comment[parseInt(id)] == null) { window.open('http://adm.globolog.globo.com/globolog/comentario/formComentarios.do?PUBLICACAO_ID=49868&POST_ID=' + id,'Comments','width=416,height=405,menubar=no,scrollbars=yes,resize=yes'); } else { window.open('http://www.comentarios.globolog.com.br/4/9/8/6/8/000049868/comentario_' + id + '.html','Comments','width=416,height=450,menubar=no,scrollbars=yes,resize=yes'); } } function getXmlComments(id) { var valor = id; for (i = 0; i < valor.length; i++) { ch = valor.charAt(i); if (ch < '0' || ch > '9') { alert('O id deve ser um número inteiro'); return; } } if (comment[parseInt(id)] == null) { return '/globolog/emptyIframe.html'; } else { return 'http://www.comentarios.globolog.com.br/4/9/8/6/8/000049868/comentarioXml_' + id + '.html'; } } function getPublicationComments() { var soma = 0; for( i = 0; i < comment.length; i++ ) { soma += getNumberOfComments( i ); } document.write( soma ); }