﻿

        function HighlightButton(btn, hlight) {
            if (hlight == true) {
                btn.src = "res/images/santa_button_blink.png"
            }
            else {
                btn.src = "res/images/santa_button.png"
            }
        }

