
/**
 *  countClick(countUrl)
 *
 *  USe like this:
 *  onclick="countClick('{$def_path}properties/log/{$property.id}/body'); return true;"
 *
 *  **/
    function countClick(countUrl){
        $.ajax({
            url: countUrl
            /*, success: function(result){
                alert(result);
                }*/
          });
    }


