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 = {
        "poll1265":
        "<table border='0' cellpadding='0' cellspacing='0'>"
        + "<tr><td id='pollTitle1265' colspan='2' class='question'>Are financial institutions doing enough technologically to curb identity theft?</td></tr>"
                    + "<tr><td class='results'>Yes: <span id='pollOptionPercentage1269'>22%</span><br />"
            + "<span id='pollOptionVotes1269' style='display:none;'>15</span></td></tr>"
                    + "<tr><td class='results'>No: <span id='pollOptionPercentage1270'>78%</span><br />"
            + "<span id='pollOptionVotes1270' style='display:none;'>54</span></td></tr>"
                + "</table>",
        "poll1266":
        "<table border='0' cellpadding='0' cellspacing='0'>"
        + "<tr><td id='pollTitle1266' colspan='2' class='question'>How much more would you pay for a socially responsible SUV?</td></tr>"
                    + "<tr><td class='results'>Five percent: <span id='pollOptionPercentage1271'>22%</span><br />"
            + "<span id='pollOptionVotes1271' style='display:none;'>9</span></td></tr>"
                    + "<tr><td class='results'>Ten percent: <span id='pollOptionPercentage1272'>40%</span><br />"
            + "<span id='pollOptionVotes1272' style='display:none;'>16</span></td></tr>"
                    + "<tr><td class='results'>Nothing: <span id='pollOptionPercentage1273'>38%</span><br />"
            + "<span id='pollOptionVotes1273' style='display:none;'>15</span></td></tr>"
                + "</table>",
        "poll1245":
        "<table border='0' cellpadding='0' cellspacing='0'>"
        + "<tr><td id='pollTitle1245' colspan='2' class='question'>Are the benefits of space shuttle missions worth their many costs?</td></tr>"
                    + "<tr><td class='results'>Yes: <span id='pollOptionPercentage1249'>49%</span><br />"
            + "<span id='pollOptionVotes1249' style='display:none;'>107</span></td></tr>"
                    + "<tr><td class='results'>No: <span id='pollOptionPercentage1250'>35%</span><br />"
            + "<span id='pollOptionVotes1250' style='display:none;'>75</span></td></tr>"
                    + "<tr><td class='results'>Not sure: <span id='pollOptionPercentage1251'>16%</span><br />"
            + "<span id='pollOptionVotes1251' style='display:none;'>35</span></td></tr>"
                + "</table>",
        "dummy_for_ie": "dummy_for_ie"
}