function showLayer(layerID){

    if (document.layers){
        document.layers[layerID].visibility="show";

    } else if (document.all){
        document.all[layerID].style.visibility="visible";

    } else {
        document.getElementById(layerID).style.visibility="visible";
    }
}

function hideLayer(layerID){

    if(document.layers){
        document.layers[layerID].visibility="hide";

    } else if (document.all){
        document.all[layerID].style.visibility="hidden";

    } else {
        document.getElementById(layerID).style.visibility="hidden";
    }
}

function shadeMe(obj){
    obj.style.color="#D0DCD0";
//    obj.style.background="#7BAACB"; 

}

function unshadeMe(obj){
//    obj.style.background="#CDE4F5";
    obj.style.color="#FFFFFF";

}
function shadeMeKat(obj){
    obj.style.color="#FFFFFF";
//    obj.style.background="#7BAACB"; 

}

function unshadeMeKat(obj){
//    obj.style.background="#CDE4F5";
    obj.style.color="#FFFFFF";

}
