
function hilite(elem)
{
    elem.style.background = '#eaeaea';
}
function lowlite(elem)
{
    elem.style.background = '';
}
function confirmDelete()
{
    return confirm("Are you sure you wish to delete this entry?");
}



