﻿// JScript File
var previousColor;

function MakeRed(button)
{
    previousColor = button.style.color;
//    button.style.color = "#E21F27";
    button.style.color = "#C7020A";
}

function RestoreColor(button)
{
    button.style.color = previousColor;
}
