    function setImage(image, src, height, width)
    {
    image.src = src;
    image.height = height;
    image.width = width;
    }
