// OGLASNIK.HR
// image clicking functions
// started by dprelec: 2007-04-23
// depends on AjaxRequest.pm

// process button click
function img_click(ID) {
    var StatData = new Array;
    StatData.id = ID;
    ajax_send(StatData);
}
        

// AJAX data process/send
function ajax_send(Params) {
    var Req;
    Req = new AjaxRequest;
    Req.url = '/click';
    Req.parameters = Params;
    if (!Req.process()) {
        return true;
    }
    else {
        return false;
    }
}




