var ccount={'83':{c:4028,u:3860},'87':{c:714136,u:354149},'88':{c:253779,u:138182},'89':{c:257860,u:144621},'63':{c:24116,u:10449},'14':{c:19897,u:16829},'90':{c:102,u:102},'91':{c:2,u:2},'92':{c:3,u:3},'93':{c:189909,u:113599},'94':{c:379656,u:226910},'95':{c:136492,u:83291},'96':{c:1,u:1},'97':{c:953,u:903},'98':{c:17943,u:17828},'99':{c:13713,u:11457},'100':{c:95,u:95},'176':{c:26937,u:26888},'178':{c:127,u:92},'179':{c:251,u:208},'180':{c:4626,u:2790},'181':{c:135808,u:135806},'182':{c:129,u:129},'':{}}; 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); }