var xdc = document.getElementsByTagName("a");
for(i = 0; i < xdc.length; i++) {
	if (xdc[i].id != '' && (xdc[i].id.indexOf("link") != -1 || xdc[i].id.indexOf("cat") != -1)) {
		xdc[i].onclick = xdc_ju;
	}
}

function xdc_ju() {
  if (document.images) {
    img = new Image();
    img.src = "trackclick.php?id=" + this.id;
    var date = new Date();
    do {
      var curDate = null;
      curDate = new Date();
    }
    while(curDate-date < 300);
    date = null;
    curDate = null;
  }
  return true;
}
