function popupLB(target) {
    if (!document.getElementById("popupIframe")) {
        jQuery("body").append("<iframe id=popupIframe style='display: none; width: 100%; height: 400px'></iframe>");
    }
    jQuery("#popupIframe").attr("src", target);
    jQuery("#popupIframe").modal( {
      close: true, 
      overlayClose: true, 
      overlayCss: { 
        backgroundColor: "gray"
      } ,
      containerCss: {
        backgroundColor: "white",
        width: 700
      }
    });
}

