postids = ["1710", "1711", "1712", "1714", "1717", "1719", "1723", "1725", "1727", ""]; counts = ["3", "1", "7", "3", "2", "4", "1", "4", "2", ""]; start = 0; end = 10; function commentCounter (postid) { for (i = start; i < end; i++) { if (postids[i] == postid) { document.write (counts[i]); return } } document.write ("0"); return } tbpostids = ["1710", "1712", ""]; tbcounts = ["1", "1", ""]; tbstart = 0; tbend = 3; function trackbackCounter (postid) { for (i = tbstart; i < tbend; i++) { if (tbpostids[i] == postid) { document.write (tbcounts[i]); return } } document.write ("0"); return }