ADVERTISEMENT

Security guard praised for securing Cebu highway where thousands of cash scattered from rider's bag

Published Jul 6, 2023 02:53 am
CEBU CITY -- Heroic act. That’s how some people, including the police, described the deed of a security guard who helped secure the area where huge wads of cash scattered after they flew out from the busted backpack of a collector of a money remittance company. After the incident, Dean Cueno, 39, admitted he somehow expected that he would get a commendation from his security agency. But much to Cueno’s chagrin, what he received was a suspension instead of commendation. “I received a memo suspending me for five days,” Cuenco said. Cueno said he was also told he was also set to receive a letter of termination. Cueno is the security guard at the Cebu-Cordova Link Expressway who saw the money bills flew out from the backpack of John Mark Barrientos. Manila Bulletin is withholding the name of the security agency pending its comment on the issue. On Tuesday morning, July 4, Barrientos was supposed to transport a bag full of money to their office in Mandaue City. While Barrientos was driving a motorcycle at the South Road Properties, the bag’s zipper got destroyed, causing the money to spill out from the bag. Cueno said when he saw the incident, he rushed to the area and prevented some motorists from taking away the money bills. Cueno said he saw two motorcycle riders who tried to drive off after picking up some cash. “I told them to return the money because it was not theirs,” he said. Cueno also helped ensure that the traffic flow in the area would not be affected as several motorists stopped to check on what’s happening. Some motorists also scrambled to pick up some cash that scattered on the road. While some returned the money they got, some also drove off with cash. According to Police Major Bethooven Taneo, chief of the Mambaling Police Station, they learned that the security guard was meted with a suspension for abandoning his post and for using his phone during the incident. Although he was suspended, Cueno said did not regret what he did. “I have no regrets. I just laughed at them when they told me they were suspending me. I am happy that I was able to help. I reprimanded those who were picking up the money. I also stopped those who tried to escape with the money,” he said The bag contained about P4 million. Police are calling on the individuals who ran off with the money to return what they got as at least P1.2 million has yet to be retrieved, police said. Police are reviewing some video footage to identify the people who drove with the money. Taneo said they would file theft charges once those who did not return the money are identified. As to Cueno, Taneo said they will be giving a commendation for his role in the incident. “Security guards are force multipliers in law enforcement. He went beyond his duty as a security guard so he could help,” said Taneo. Taneo said because of Cueno, untoward incidents were prevented from happening. Taneo said he was also surprised that instead of commendation, what Cueno got from the security agency was a suspension. “It was not just legally right, what he did was morally right to help the person (collector). It was not an ordinary situation. It’s not everyday that you can see P4 million scattered on the ground,” Taneo said. Taneo said they will try to talk to the management of the security agency and resolve the issues involving Cueno. “First and foremost, we want to thank him (Cueno). He really made an effort to help. We will try to coordinate with the security agency and maybe there’s more impact if it us who will talk to them,” said Taneo.



Related Tags

money Security guard Collector South Road Properties Cebu City
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.