/**
 * Updates the client photo.
 * @param path The URL of the new photo.
 */

// The client photo IMG element ID.
var PHOTO_ID =  "client";
 
function photo(path) {
    document.getElementById(PHOTO_ID).src = path;
}

