function pintaFondo(obj,accion){
	try
	{
		if (accion != 'Destacado'){
			obj.style.cursor = 'hand';
			obj.bgColor="#CCCCCC";								
		}else{
			obj.bgColor="#F5F5F5";		
			obj.style.cursor = 'default';					
		}

	}
	catch(err)
	{
	}	
}

function pintaFondo2(obj,accion){
	try
	{
		if (accion != 'Destacado'){
			obj.style.cursor = 'hand';
			obj.bgColor="#CCCCCC";								
		}else{
			obj.bgColor="#ECECEC";		
			obj.style.cursor = 'default';					
		}
	}
	catch(err)
	{
	}		
}
	