Hi,
We tried on our end and it's working on some websites and not on others with IE.
It seems to be a timeout issue.
Try to change the line:
$js = "do_nothing( function() {window.focus();window.print();setTimeout(function(){try{ window.top.document.getElementById('sbox-window').close(); }catch(err){ window.top.SqueezeBox.close(); }}, 1000);});";
to:
$js = "do_nothing( function() {setTimeout(function(){window.focus();window.print();setTimeout(function(){try{ window.top.document.getElementById('sbox-window').close(); }catch(err){ window.top.SqueezeBox.close(); }}, 1000);},1000);});";
and that should solve the problem.