function highlight(which,color){
    if (document.all||document.getElementById)
        which.style.backgroundColor=color;
        which.style.border='1px solid #003377';
        var browserName=navigator.appName;
        if (browserName=="Microsoft Internet Explorer") {
            which.style.cursor='hand';
        } else {
            which.style.cursor='pointer';
        }
        //which.style.padding = '1px 2px 1px 2px';
    }

function lolight(which,color){
    if (document.all||document.getElementById)
        which.style.backgroundColor=color;
        which.style.border='0';
        //which.style.padding = '-1px -2px -1px -2px';
        //which.style.border='1px solid #E7E7E7';
    }

function highlightbtn(which,color){
    if (document.all||document.getElementById)
        which.style.backgroundColor=color;
        var browserName=navigator.appName;
        if (browserName=="Microsoft Internet Explorer") {
            which.style.cursor='hand';
        } else {
            which.style.cursor='pointer';
        }
        //which.style.padding = '1px 2px 1px 2px';
    }

function highrow(which,color){
    //padding-top, padding-right, padding-bottom, and padding-left
    if (document.all||document.getElementById)
        which.style.backgroundColor=color;
        which.style.padding = '1px 0px 2px 0px';
        //which.style.border='1px solid #003377';
    }

function lorow(which){
    var color = which.id;
    if (color == 'grayrow') {
        var bgcolor = '#f5f5f5';
    }
    if (color == 'whiterow') {
        var bgcolor = '#FFFFFF';
    }
    if (document.all||document.getElementById)
        which.style.backgroundColor=bgcolor;
        //which.style.border='0';
        //which.style.border='1px solid #E7E7E7';
    }

function pointer (which,color){
    if (document.all||document.getElementById)
        var browserName=navigator.appName;
        if (browserName=="Microsoft Internet Explorer") {
            which.style.cursor='hand';
        } else {
            which.style.cursor='pointer';
        }
    }

