function changeColor(obj)
{
  obj.style.backgroundColor='#cc0000';
}
 
function resetColor(obj) 
{
  obj.style.backgroundColor='#475ca1';
}
