<!--
function counter(id, tb, pr) {
  xmlhttp.open("GET", '../module/counter.php?id=' + id + '&tb=' + tb + '&pr=' + pr);
  xmlhttp.onreadystatechange=function() {
  if (xmlhttp.readyState==4) {
    /*alert(xmlhttp.responseText);*/
  }
  }  
  xmlhttp.send(null);
  return true;
}
-->