$(document).ready(function() {
   $.ImageBox.init({
      loaderSRC: 'images/imagebox/loading.gif',
      closeHTML: '<div id="ImageBoxCloseImage" />'
   });
});

function openWindow(uri) {
   var w = 760;
   var h = 560;
   var win = window.open(uri, "Code example",
         'width=' + w + ',left=' + (screen.width - w) / 2 +
         ',height=' + h + ',top=' + ((screen.height - 50) - h) / 2 + ',scrollbars=yes'
   );

   if (parseInt(navigator.appVersion) >= 4) {
      win.focus();
   }
}
