function setColor(obj, raton)
{
  //obj = findObj(objName);
  if (obj.style)
  {
  	if (raton > 0)
	{
		var id=0;
    	obj.style.backgroundColor = '#FFFFFF';
		//id=obj.id;
  		//cargar(id);
	}
	else
	{
		obj.style.backgroundColor = '';
	}
  }
  
}
