function swapImg(imageId, newImage)
{
    objImg = document.getElementById(imageId);
    objImg.src = "/horizons/images/" + newImage;
}
