function popup(src,h,w) {
  if (!h)
    h = 300;
  if (!w)
    w = 450;
  win = window.open(src,"","top=20,left=20,height=" + h + ",width=" + w + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes")
}

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();
}


