
function setColor(theId, theColor, theBackground, theStatus, theOpacity) {
document.getElementById(theId).style.backgroundColor = theBackground;
document.getElementById(theId).style.color = theColor;
document.getElementById(theId).style.visability = theStatus;
document.getElementById(theId).style.opacity = theOpacity;

}