function ajaxSzavazas(tipus,id,checkbox)
{
    try{
        var pont=0;
        for(var i=0;i<checkbox.length;i++)
        {
            if(checkbox[i].checked)
                pont=checkbox[i].value;
        }
        $.ajax({
            url: 'ajax/szavazas.php?tipus='+tipus+'&id='+id+'&pont='+pont,
            type: 'GET',
            dataType: 'text',
            timeout: 1000,
            error: function(){
            },
            success: function(text){
                //alert('Siker '+text);
                if(text=='hiba')
                    alert('hiba');
                else
                {
                    document.getElementById('szavazatkep').src='images/szavazat_'+text+'.png';
                  //  document.getElementById('szavazatszam').innerHTML=parseInt(document.getElementById('szavazatszam').innerHTML)+1;
                    document.getElementById('szavazatform').style.display='none';
                }
            }
        });
        return false;
    }
    catch(e)
    {
        return true;
    }
}
