var a = document.getElementsByTagName("a"); for(var i = 0; i < a.length; i++) { if(a[i].id != '' && a[i].id.charAt(0) == 'b') { a[i].onmousedown = countBannerClick; } } function countBannerClick() { var tp = this.id.charAt(0); if(tp != 'b') { return true; } if(this.id.length < 2) { return true; } itemid = this.id.substring(1); if(parseInt(itemid.charAt(0)) < 1 || itemid.match(/\D/)) { return true; } i = new Image(); h = Math.random(); i.src= root + 'banner-count.php?id=' + itemid + '&type='+tp+'&h='+h; return true; }