function getLightbox(){
    
    var lightBoxHtml = "";
    var lightBox = $('#lightboxHolder');
    lightBoxHtml += "<div class=\"lightbox-bg\"></div>";
    lightBoxHtml += "<div id=\"lightbox\">";
    lightBoxHtml += "<div class=\"close\"> <div class=\"btn\">X</div> </div>";
    lightBoxHtml += "<iframe class=\"noborder\" scrolling=\"no\" width=\"870\" height=\"450\" frameborder=\"0\" src=\"http://www.creativewebtv1.com/newsinglecms/player/list_flvplayer.php?playerID=23&userID=27\"></iframe>";
    lightBoxHtml += "</div>";
    
    $('#site').before(lightBoxHtml);
    lightBox.show();
    $("#lightbox .close .btn").bind("click", function () {
        $('#lightbox').remove();     
        $('.lightbox-bg').remove();     
        $('.lightbox-spacer').remove();     
    });
    
    $(".lightbox-bg").bind("click", function () {
        $('#lightbox').remove();     
        $('.lightbox-bg').remove();     
        $('.lightbox-spacer').remove();     
    });
    
    $(window).resize(function(){
        var htmlHeight = $('html').innerHeight();
        var htmlWidth = $('html').innerWidth();
        var siteHeight = $('#site').innerHeight();
        

        $('.lightbox-bg').css('height',siteHeight);

        if(parseInt(htmlWidth) <= 995){
            $('.lightbox-bg').css('width','995px');
        } else {
            $('.lightbox-bg').css('width',parseInt(htmlWidth)+'px');
            if(jQuery.browser.msie && jQuery.browser.version == '8.0'){
                $('.lightbox-bg').css('width',parseInt(htmlWidth)- 21+'px');    
            }
        } 
    });

    $(window).trigger("resize");

    return false;
}