postids = ["1127", "1129", "1131", "1132", "1136", "1137", "1139", "1140", "1142", "1143", ""]; counts = ["7", "11", "3", "3", "1", "2", "1", "4", "7", "5", ""]; start = 0; end = 11; function commentCounter (postid) { for (i = start; i < end; i++) { if (postids[i] == postid) { document.write (counts[i]); return } } document.write ("0"); return } tbpostids = ["1127", "1131", "1132", "1133", "1134", "1136", ""]; tbcounts = ["1", "3", "5", "270", "1", "3", ""]; tbstart = 0; tbend = 7; function trackbackCounter (postid) { for (i = tbstart; i < tbend; i++) { if (tbpostids[i] == postid) { document.write (tbcounts[i]); return } } document.write ("0"); return }