    // getElementById egyszerűsítve
    function $div(id) { return document.getElementById(id); }

    /************************************/
    // Click
    function countClick(nid) {
       new ajax ('ajax.php', {
           postBody: 'action=click&nid='+nid,
           onComplete: clickHandler
        });
        return true;

    }

    function clickHandler() {
      return;
    }

