﻿function changeImage(imgID,newImg) {
    document.images[imgID].src='/stenchcroft/loading.gif';
    document.images[imgID].src=newImg;
}

function layerView(id) {
    document.getElementById(id).style.display = (document.getElementById(id).style.display=="block")?"none":"block";
}