function makeUnderline(anchorRef) {
    anchorRef.style.textDecoration = 'underline';
}

function makeNoUnderline(anchorRef) {
    anchorRef.style.textDecoration = 'none';
}
