Two scrollbars in popup window

Looking at your site, the double scrollbars are caused by two things:

  1. The iframe
  2. The CSS declarations applied to a <div>

Your iframe has the scrolling="auto" property set. Change this to scrolling="no" to turn off the scroll bar.

Also, your containing lightbox div (<div id="LT_LB">) has its overflow property set to “auto.” Set this to “hidden” to remove the scroll bar.