282# }
283#
284# public static function ContadorVisistas($idAviso)
285# {
286# $key = 'IngresoAviso_' . $idAviso;
287#
288# if (!isset($_COOKIE[$key]))
289# {
290# setcookie($key, 1, time() + 86400);
291# $cacheService = ConfigurationManager::GetCacheService(CacheService::MemCached);
292#
293# if ($cacheService->Increment($key, 1) === false)
294# {
295# $cacheService->Add($key, 1, 7200);
296# }
297# }
298# }
299#
300# public static function Valoracion($idAviso)
301# {