// JavaScript Document
function ChangeColor(obj)
{
 if ( 'undefined' != typeof(obj) )
   {obj.style.backgroundColor='#007FC0'}
 else{alert('not found')}
}
function ReStoreColor(obj)
{
 if ( 'undefined' != typeof(obj) )
  {obj.style.backgroundColor='#0071B5'} 
}