String.prototype.viewImage = function(itemId) {
 window.scrollTo(0, 0);
 $('#'+itemId).css('display', 'block');
 document.getElementById(itemId).onclick = function() {
  $('#'+itemId).css('display', 'none');
  if (!$.browser.msie) $('body').css('overflow', 'auto');
 }
 $('#'+itemId).html('<img src="'+this+'" alt="Image" style="margin-top: 50px;" /><br /><img style="cursor: pointer;" src="/img/fermer-cette-image.gif" alt="Fermer" />');
 if (!$.browser.msie) $('body').css('overflow', 'hidden');
}
