﻿function highlightLink(sElementId) {
    try {
        document.getElementById(sElementId).style.color = '#990';
    }
    catch (e) { }
} //end function

function unhighlightLink(sElementId) {
    try {
        document.getElementById(sElementId).style.color = '#747152';
    }
    catch (e) { }
} //end function
