var oldcolor;
var oldid;
function show(x){
var x;
document.getElementById(x).style.visibility='visible';
}

function hide(x){
var x;
document.getElementById(x).style.visibility='hidden';
}
function bg(id, color){
var id;
var color;
        oldid=id;
        oldcolor=document.getElementById(id).style.backgroundColor;
        document.getElementById(id).style.backgroundColor=color;
        document.getElementById(id).style.border="1px solid #000000";
        document.getElementById(id).style.color="#FFFFFF"; 
}
function oldbg(){
        document.getElementById(oldid).style.backgroundColor=oldcolor;
        document.getElementById(oldid).style.border="1px solid #AAB5BF";
        document.getElementById(oldid).style.color="Maroon";
}

function mbg(id) {
        oldid=id;
        oldcolor=document.getElementById(id).style.backgroundColor;
        document.getElementById(id).style.backgroundColor="#99A7BD";
        document.getElementById(oldid).style.color="White";        
}

function oldmbg(){
        document.getElementById(oldid).style.backgroundColor=oldcolor;
        document.getElementById(oldid).style.color="Black";
}


