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=no,resizable=yes")
}


function lightBoxImages()
{
  if (typeof(isIE6) != 'undefined')
  {
    popup(iFrameSrc,670,445);
  }
  else
  {
    if (typeof(window.iframeW) == 'undefined')
      window.iframeW = '445px';
    if (typeof(window.iframeH) == 'undefined')
      window.iframeH = '670px';
    if (typeof(window.iframeL) == 'undefined')
      window.iframeL = '-222px';
    jQuery(iFrame).modal(
      {
        containerCss: {width:window.iframeW,height:window.iframeH,marginLeft:window.iframeL},
        onShow: function() { jQuery("#modalOverlay").click( jQuery.modal.close ); }
      });
  }
}
