// function to control border of menu on left side of page
// tardicss.css   .borderimage{ also controls the border color



function borderon(which){
//if IE 4+ or NS 6+
if (document.all||document.getElementById){
which.style.borderColor='black'
}
}
function borderoff(which){
//if IE 4+ or NS 6+
if (document.all||document.getElementById){
which.style.borderColor='silver'
}
}
