/* Highlight/Unhighlight the element. */
function hl (element)  {   element.style.backgroundColor = "#FFffcc"; }
function uhl (element) {   element.style.backgroundColor = ""; }


