﻿var lbWth = 700;
var lbHgt = 340;

function showLightBoxPopUp2(heading)
{
     $("#lightbox-container2 .lightbox-title").html(heading);
     //$("#lightbox-placeholder2").html(content);
           
     $.blockUI({ message: $('#lightbox-container2'), 
           css:{
                   width:lbWth + "px",
                   backgroundColor: '#000',
                   border: 'none', 
                  top:  (jQuery(window).height() - lbHgt) /2 + 'px', 
               left: (jQuery(window).width() - lbWth) /2 + 'px',
                   cursor:'pointer'
           } 
    }); 
    
    $("div.blockUI").css("cursor","pointer");
    $("#lightbox-container2 a.blockClose, div.blockUI").click(function(){
            //$("#lightbox-placeholder2").html('');
               $.unblockUI();
               return false;
        });
           
   return false;
};    