// JavaScript Document
function setColor(obj)
{
document.getElementById(obj).style.backgroundColor='#C80014';
document.getElementById(obj).style.color='#ffffff';
}
function setColoro(obj)
{
document.getElementById(obj).style.backgroundColor='#ffffff';
document.getElementById(obj).style.color='#C80014';
}
