
//========================
// GradSoft Java Script
// http://noc.gradsoft.ua
// Vlad Martynovsky 
//========================



function new303Color(idCell) {
if (document.all) eval('document.all.'+idCell+'.style.background = "#F0DFD6"');
else eval('document.getElementById("' + idCell + '").style.background = "#F0DFD6"');
}

function back303Color(idCell) {
if (document.all) eval('document.all.'+idCell+'.style.background = "#FFFFFF"');
else eval('document.getElementById("' + idCell + '").style.background = "#FFFFFF"');
}

function new303TextColor(idCell) {
if (document.all) eval('document.all.'+idCell+'.style.color = "#484D8D"');
else eval('document.getElementById("' + idCell + '").style.color = "#484D8D"');
}

function back303TextColor(idCell) {
if (document.all) eval('document.all.'+idCell+'.style.color = "#D9D7E2"');
else eval('document.getElementById("' + idCell + '").style.color = "#D9D7E2"');
}

