var js_index = -1;

function js_vote(cancel, pollName, index, itemId, valueId) {
   js_index = index;
   var parameters = "ajax=true&" + (cancel ? "re" : "") + "vote=true&poll_name=" + pollName + "&index=" + index + "&item_id=" + itemId + "&value_id=" + valueId + "&sid=" + Math.random();
   js_doAjax(js_voted, js_ajax_error, "http://www.stinesplace.com/www/poll.php", parameters);
}

function js_voted(text) {
    document.getElementById("poll_area_" + js_index).innerHTML = text;
}
