function ShowFaqItem(guid, popup_id)
{
    var loading_html    = '<div id="lpPreLoad" class="Loading_PreLoad" style="text-align:center;">'
                        + '<img id="lpPreLoad_Image" style="border-width: 0px;" src="http://media2.comcast.net/anon.comcastonline2/support/helpandsupport/animatedbig.gif"/>'
                        //+ '<span id="lpPreLoad_Label">Loading Content...</span>'
                        + '</div>';
    $(".content").html(loading_html);
    
    var tWindow = new Lk.ShadowWindow();
    var tHtml = jQuery('#' + popup_id).html();

    tWindow.show(tHtml, {height:498, width:650});
    
    $.ajax({
        type: "POST",
        url: "../Services/Faq.asmx/GetItem",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        data: "{guid:'"+guid+"'}",
        success: function(msg) {
            $(".content").html(msg.d.body);
            /*
            if ( msg.error )
            {
                alert(msg.body)
            }
            else
            {
                $(".content").html(msg.body);
                
                var tWindow = new Lk.ShadowWindow();
                var tHtml = jQuery('#hs-popup').html();

                tWindow.show(tHtml, {height:498, width:650});
            }
            */
        },
        error: function(XMLHttpRequest, textStatus, errorThrown) {
            alert('Error occurred while processing an AJAX request. Please, reload page and try again.');
        }
    });
    return false;
}
