﻿function focusBackGround(id) {
    var txt = document.getElementById(id);
    txt.className = "focusBackGround";
}
function blurBackGround(id) {
    var txt = document.getElementById(id);
    txt.className = "blurBackGround";
}
