function changeColor(obj)
{
  obj.style.backgroundColor='#be0032';
}
 
function resetColor(obj) 
{
  obj.style.backgroundColor='#6699cc';
}