var ccount={'83':{c:3985,u:3817},'87':{c:692859,u:339315},'88':{c:245176,u:131256},'89':{c:252596,u:139935},'63':{c:23434,u:10004},'14':{c:19800,u:16732},'90':{c:31,u:31},'91':{c:2,u:2},'92':{c:3,u:3},'93':{c:184310,u:108912},'94':{c:288849,u:168254},'95':{c:136401,u:83236},'96':{c:1,u:1},'97':{c:864,u:814},'98':{c:16775,u:16665},'99':{c:10148,u:8277},'100':{c:35,u:35},'176':{c:26406,u:26378},'178':{c:127,u:92},'179':{c:248,u:206},'180':{c:4578,u:2742},'181':{c:135805,u:135803},'182':{c:11,u:11},'':{}}; function ccount_display(id) { document.write(ccount[id]['c'].formatThousands('UK')); } function ccount_unique(id) { document.write(ccount[id]['u'].formatThousands('UK')); } Number.prototype.formatThousands = function(notation) { var n = this, separator = ""; switch (notation) { case "US": separator = ","; break; case "UK": separator = "."; break; case "FR": separator = " "; break; default: return n; } n = parseInt(n) + ""; j = (j = n.length) > 3 ? j % 3 : 0; return (j ? n.substr(0, j) + separator : "") + n.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + separator); }