function GetPoll(strFile) 
{
    Ajax_WriteToPageWithCallback(strFile, DisplayPoll);
}

function DisplayPoll(strResponse) 
{
    if (strResponse == '') 
    {
        document.getElementById('pollbox').style.background = "none";
        document.getElementById('pollbox').style.display = "none";
        return;
    }

    //Spit each list of hot deals into its constituent elements
    var arrPoll = strResponse.split('|');
    var strPollId = arrPoll[0];
    var strUrl = arrPoll[1];
    var strQuestion = arrPoll[2];
    var strUrlText = arrPoll[3];

    //Build the top of the poll box
    var strInnerHtml = '<div class="right-box" id="box-poll">';
    strInnerHtml += '<div class="box-content"><h2><span>Your Opinion</span></h2>';
    strInnerHtml += '<div class="sub-content clearfix"><img src="http://www.totaltravel.com/images/icons/poll.gif">';
    strInnerHtml += '<div id="poll-question">';

    //Fill in the details
    strInnerHtml += '<input type="hidden" name="pollid" value="' + strPollId + '" style="float: right;"/>';
    strInnerHtml += '<a href="' + strUrl + '" style="color: #002859; text-decoration:none;" target="_top">' + strQuestion + '</a>';
    strInnerHtml += '</div>';
    strInnerHtml += '<a class="votenow" href="' + strUrl + '" target="_top">' + strUrlText + '</a>';

    //Build the bottom of the poll box
    strInnerHtml += '</div>';
    strInnerHtml += '</div>';
    strInnerHtml += '</div>';

    //push it all to the screen
    document.getElementById('pollbox').innerHTML = strInnerHtml;
}