// * Dependencies *
// this function requires the following snippet:
// JavaScript/readable_MM_functions/findObj
function setColor(objName, fg, bg)
{
obj = findObj(objName);
if (obj.style)
{
obj.style.color = fg;
obj.style.backgroundColor = bg;
}
}
// * Dependencies *
// this function requires the following snippet:
// JavaScript/readable_MM_functions/findObj
function setColor(objName, fg, bg)
{
obj = findObj(objName);
if (obj.style)
{
obj.style.color = fg;
obj.style.backgroundColor = bg;
}
}