function keepMeAlive(imageId) {
    myImg = document.getElementById(imageId);
    if (myImg) {
        myImg.src = myImg.src.replace(/\?.*$/, '?' + Math.random());
    }
}
