/* 
 * Obsahuje skripty pro hlasovani v anketach
 */

_anketa_id = null;

function state_change(xmlhttp) {
    if (xmlhttp.readyState == 4) {
        document.getElementById("anketa_d_" + _anketa_id).innerHTML = xmlhttp.responseText;
    }
}

function hlasuj(odpoved_id, anketa_id) {
    anketa_d = document.getElementById("anketa_d_" + anketa_id);
    _anketa_id = anketa_id;
    if (send_request(state_change, "GET", "./index.php?ajax=1&url=ankety/hlasuj&id=" + odpoved_id + "&anketa=" + anketa_id))
        anketa_d.innerHTML = "odesílám váš hlas..." + anketa_d.innerHTML;
    else
        anketa_d.innerHTML = "chyba!" + anketa_d.innerHTML;
}


