function updatePoll(pollId) {
    var vote = getCookie("SpectrumPollVote") || "";
    var hasVoted = vote.indexOf("p" + pollId + "p") > -1;
    var voteOver = pollVote["poll" + pollId] == null;
    $("pollHolder" + pollId).innerHTML = ((hasVoted || voteOver) ? pollResult : pollVote)["poll" + pollId];
}

function docRefresh() {
 window.location.reload( true);
}

function submitPollResult(pollOptionId) {

var params = 'pollOptionId=' + pollOptionId;
new  Ajax.Request('polldata', {parameters: params,
onComplete: docRefresh,
evalScripts: true });

}





pollVote = {
                                "dummy_for_ie": "dummy_for_ie"
}


pollResult = {
        "poll1325":
        "<table border='0' cellpadding='0' cellspacing='0'>"
        + "<tr><td id='pollTitle1325' colspan='2' class='question'>Has technology improved our security since the 9/11 attack?</td></tr>"
                    + "<tr><td class='results'>Yes: <span id='pollOptionPercentage1329'>55%</span><br />"
            + "<span id='pollOptionVotes1329' style='display:none;'>65</span></td></tr>"
                    + "<tr><td class='results'>No: <span id='pollOptionPercentage1330'>45%</span><br />"
            + "<span id='pollOptionVotes1330' style='display:none;'>54</span></td></tr>"
                + "</table>",
        "poll1345":
        "<table border='0' cellpadding='0' cellspacing='0'>"
        + "<tr><td id='pollTitle1345' colspan='2' class='question'>If you had the money to spare, would you go on a trip to the International Space Station?</td></tr>"
                    + "<tr><td class='results'>Yes: <span id='pollOptionPercentage1349'>68%</span><br />"
            + "<span id='pollOptionVotes1349' style='display:none;'>72</span></td></tr>"
                    + "<tr><td class='results'>No: <span id='pollOptionPercentage1350'>32%</span><br />"
            + "<span id='pollOptionVotes1350' style='display:none;'>34</span></td></tr>"
                + "</table>",
        "poll1307":
        "<table border='0' cellpadding='0' cellspacing='0'>"
        + "<tr><td id='pollTitle1307' colspan='2' class='question'>How much of a role can advanced technology have in the fight against extremist terror?</td></tr>"
                    + "<tr><td class='results'>Major: <span id='pollOptionPercentage1314'>53%</span><br />"
            + "<span id='pollOptionVotes1314' style='display:none;'>57</span></td></tr>"
                    + "<tr><td class='results'>Moderate: <span id='pollOptionPercentage1315'>30%</span><br />"
            + "<span id='pollOptionVotes1315' style='display:none;'>32</span></td></tr>"
                    + "<tr><td class='results'>Minor: <span id='pollOptionPercentage1316'>18%</span><br />"
            + "<span id='pollOptionVotes1316' style='display:none;'>19</span></td></tr>"
                + "</table>",
        "dummy_for_ie": "dummy_for_ie"
}