function zoomImage( imgSrc, imgWidth )
{
  var img = document.getElementById( 'bigImage' );
  img.src = imgSrc;
  img.width = imgWidth;
}

