ADVERTISEMENT

Tanay LGU, Meralco hold medical mission

Published Jul 13, 2023 06:09 am
The Tanay, Rizal provincial government, in partnership with Meralco, launched a health center improvement project and medical mission aimed at further enhancing the healthcare capabilities of one of the town's health centers and provide quality health services to its residents and members of the indigenous Dumagat tribe. The project was attended by Meralco Head of HMB-Central Business Area Villardo Asuncion, Meralco Chief Corporate Social Responsibility Officer and One Meralco Foundation (OMF) President Jeffrey Tarayao, Tanay Mayor Rafael "Lito" Tanjuatco, Tanay Municipal Health Officer Dr. Amor Dulce Rivera, Meralco Senior Vice President and Chief Revenue Officer Ferdinand Geluz, Rizal Vice Governor Reynaldo San Juan, Jr., Tanay Vice Mayor Rex Manuel Tanjuatco, and Meralco Vice President and Head of Commercial Operations Charina Padua, The municipal government and OMF installed a 3 (kWp) solar photovoltaic (PV) system for the Barangay Laiban Health Center which caters to the basic medical needs of over 3,000 residents of the community. The new solar facility powers crucial medical equipment for improved delivery of health services in the community. Health care workers can now use nebulizers for those with respiratory ailments and fetal dopplers for prenatal care. In addition, the health center is now sufficiently lit and ventilated for a more conducive environment for both medical workers and patients. “Rest assured that the municipality of Tanay, together with our rural health unit and medical workers, will work together to ensure that your good donation will be used for the benefit of the community since we all believe that light is life," Mayor Tanjuatco said. Aside from the installation of the solar PV system, the foundation also conducted a medical mission for the residents of Barangay Laiban with the help of volunteer doctors from the Department of Health (DOH), Tanay Municipal Health Office, and Marikina Valley Medical Center. Employees from the electric concessionaire also donated medicines and medical equipment such as nebulizers, fetal dopplers, and blood pressure monitors. 100 school kits for students of the Laiban Integrated School were also donated. “This initiative, led by our own Meralco employees, signifies our commitment to empower not just our customers but also residents in remote communities. With the help of our government and private sector partners, Meralco aims to energize and support more communities and continue powering the good life for every Filipino,” Geluz said. According to Meralco, the energization of rural health centers is among the initiatives of OMF under its community electrification program which also covers off-grid public schools, low-income households in the Meralco franchise area, water access, and agricultural and livelihood programs. In April, the Tanay municipal government and the Pasig City local government established a super rural health unit (RHU) in Barangay Plaza Aldea in Tanay, Rizal To cater to the health needs of its residents and relocatees. The super RHU in Sitio Halang na Gubat was built to serve patients from three resettlement sites in the municipality, namely Southville 10, Hauzville, and Eastshine Residences. According to Pasig City Mayor Vico Sotto, the city government considers these three sites as off-city relocation sites for informal settler families (ISFs) who used to live in the danger zones in their city. The Tanay municipal government has also relocated some of its residents in similar circumstances. The structure and operation of the RHU facility was prepared by the Pasig government while the construction and other operations were handled by the Tanay government and the officials of Barangay Plaza Aldea.



Related Tags

health Meralco Dumagats Tanay Metro News
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.