<!--
        // Highlight Game
        //=================================================================
                var keepbg = 'white'
        //-----------------------------------------------------------------
                function highlight(what,enter)
                {
                        if (enter)
                        {
                                keepbg = what.bgColor
                                what.bgColor='yellow'
                        }
                        else
                        {
                                what.bgColor=keepbg
                        }
                        return 1
                }

        // Highlight Game
        //=================================================================
                 var keepcol = 'gray'
        //-----------------------------------------------------------------
                function highlink(what,enter)
                {
                        if (enter)
                        {
                                keepcol = what.style.color
                                what.style.color='red'
                        }
                        else
                        {
                                what.style.color=keepcol
                        }
                        return 1
                }


//  end script -->
