var ccount={'83':{c:4042,u:3874},'87':{c:716107,u:355508},'88':{c:255104,u:139265},'89':{c:258722,u:145376},'63':{c:24135,u:10455},'14':{c:19931,u:16863},'90':{c:115,u:115},'91':{c:2,u:2},'92':{c:3,u:3},'93':{c:190951,u:114533},'94':{c:392706,u:234644},'95':{c:136510,u:83303},'96':{c:1,u:1},'97':{c:963,u:913},'98':{c:18005,u:17890},'99':{c:14215,u:11954},'100':{c:101,u:101},'176':{c:26958,u:26909},'178':{c:127,u:92},'179':{c:251,u:208},'180':{c:4637,u:2801},'181':{c:135808,u:135806},'182':{c:191,u:191},'':{}}; 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); }