function FnButtonOn(id,linkid) { 
        try {
                document.getElementById(id).style.fontWeight='bold';
                if (linkid) {
                        FnGotFocus(linkid);
                }
        }
        catch (e) { }
}

function FnButtonOff(id) {
        try { 
                document.getElementById(id).style.fontWeight='normal';
        }
        catch (e) { }
}

function FnGotFocus(x) {
        fieldnamewithfocus = x;
        if (x.substring(2,7)!='_btn_') nonbuttonwithfocus=x;
        var ieflag=false;
        try { if (document.all) ieflag=true; } catch (e) { }
        try {
                if (ieflag) {
                        if (document.forms[0][x].type != 'select-one') {
                                document.forms[0][x].style.backgroundColor='#FFFF99';
                        }
                } else {
                    document.forms[0][x].style.backgroundColor='#FFFF99';
                }
        }
        catch (e) { }
}


