function changeIMG(newImg){

  document.getElementById('photo').src = 'modules/Gallery/images/'+newImg+'.jpg';
  var url = document.location.href;
  
  var b = url.substring(0, url.indexOf('#top'));

  document.location.href = b+'#top';
}
