<!--
function highlight(itemID) {
// change the background color of the item
document.getElementById(itemID).style.color = "#FF0000";
document.getElementById(itemID).style.cursor = "pointer";
document.getElementById(itemID).style.textDecoration = "underline";
}
function unhighlight(itemID) {
// restore item to original color
document.getElementById(itemID).style.color = "#000000";
document.getElementById(itemID).style.textDecoration = "none";
}
//
-->
