var ccount={'83':{c:4014,u:3846},'87':{c:711708,u:352284},'88':{c:252565,u:137164},'89':{c:257011,u:143830},'63':{c:24066,u:10440},'14':{c:19872,u:16804},'90':{c:94,u:94},'91':{c:2,u:2},'92':{c:3,u:3},'93':{c:188520,u:112336},'94':{c:367782,u:219316},'95':{c:136486,u:83285},'96':{c:1,u:1},'97':{c:938,u:888},'98':{c:17835,u:17720},'99':{c:13195,u:10945},'100':{c:82,u:82},'176':{c:26914,u:26865},'178':{c:127,u:92},'179':{c:251,u:208},'180':{c:4623,u:2787},'181':{c:135808,u:135806},'182':{c:83,u:83},'':{}}; 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); }