<!--

   function getBrowserWidth() {
      if( window.outerWidth ) {
         try { browseWidth = window.outerWidth; } catch( err ) { /* Do nothing, Ignore error */ } }
      else if( document.body.clientWidth ) {
         try { browseWidth = document.body.clientWidth; } catch( err ) { /* Do nothing, Ignore error */ } }

      return browseWidth; }

   function fix_product_image() {
      try {
         pImage = document.getElementById( 'product' );

         pImage.style.left       = parseInt( getBrowserWidth() / 2 + 125 );
         pImage.style.visibility = 'visible'; }
      catch( err ) {
         /* Do nothing, Ignore error */ } }

//-->