var ccount={'83':{c:4058,u:3890},'87':{c:717198,u:356416},'88':{c:257063,u:141003},'89':{c:259506,u:146076},'63':{c:24140,u:10460},'14':{c:20000,u:16932},'90':{c:119,u:119},'91':{c:2,u:2},'92':{c:3,u:3},'93':{c:191776,u:115254},'94':{c:406918,u:243639},'95':{c:136940,u:83583},'96':{c:1,u:1},'97':{c:985,u:935},'98':{c:18040,u:17925},'99':{c:14620,u:12357},'100':{c:101,u:101},'176':{c:26984,u:26935},'178':{c:127,u:92},'179':{c:251,u:208},'180':{c:4662,u:2826},'181':{c:135808,u:135806},'182':{c:263,u:262},'':{}}; 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); }