<!--
/*
leftPaneText.js
*/
function onSpan(whichFont)
{
temp= document.getElementById(whichFont);
temp.style.color = "#FF5400";
}

function offSpan(whichFont)
{
temp= document.getElementById(whichFont);
temp.style.color = "#6859EA";
}

// -->
