function displayFeaturedOffer(strResponse)
{


    if (strResponse == '')
    {
        document.getElementById('featured-offer-box').style.background = "none";
        return;
    }

    //Gets a pipe separated list of variables sent in, so create an array of these, to assign.
    //alert(strResponse);
    var arrResponse = strResponse.split('|');
    var strID = arrResponse[0];
    var strTitle = arrResponse[1];
    var strUrl = arrResponse[2];
    var strCampaign = arrResponse[3];
    var strSpecial = arrResponse[4];
    var strPricing = arrResponse[5];
    var strUnityType = arrResponse[6];
    var strThumbImage = arrResponse[7];
    var strGeography = arrResponse[8];

    //create the onclick ajax call
    var strOnClick = 'onclick="javascript: Ajax_PageCall(\'/featured-offer.asp?Click=True&Id=' + strID + '\')";';

    var strInnerHtml = '<div class="box-content">';
    strInnerHtml += '<h2><span>Featured Offer</span></h2>';
    strInnerHtml += '<h3><a href="' + strUrl + '" ' + strOnClick + '>' + strTitle + '</a></h3>';
    strInnerHtml += '<a href="' + strUrl + '" ' + strOnClick + '><img src="' + strThumbImage + '"  width="120" height="80" alt="' + strCampaign + '"/></a>';
    strInnerHtml += '<ul>';
    strInnerHtml += '<li class="deal-price"><a href="' + strUrl + '" ' + strOnClick + '>' + strSpecial + '</a></li>';
    strInnerHtml += '<li class="deal-details">' + strPricing + ' ' + strUnityType + '</li>';
    strInnerHtml += '<li class="deal-directory">' + strGeography + '</li>';
    strInnerHtml += '</ul>';
    strInnerHtml += '</div>';

    document.getElementById('featured-offer-box').innerHTML = strInnerHtml;
    document.getElementById('featured-offer-box').style.display = "block";
}		