function loadImage(containerID, image) 
{
    var container = document.getElementById(containerID);
    container.src = image;
}
