postids = ["103", "121", "126", "143", "146", "172", "177", "180", "182", "184", "186", "191", "208", "209", "214", "220", "226", "91", "97", "98", ""]; counts = ["1", "2", "2", "4", "2", "1", "2", "1", "2", "2", "2", "6", "2", "8", "2", "2", "1", "2", "3", "6", ""]; start = 0; end = 20; function commentCounter (postid) { for (i = start; i < end; i++) { if (postids[i] == postid) { document.write (counts[i]); return } } document.write ("0"); return }