ADVERTISEMENT

Strange bedfellows: Erap asks GMA to 'run again'; volunteers as her campaign manager

Published Apr 4, 2022 06:29 pm

LUBAO, Pampanga--Politics, indeed, makes strange bedfellows. Bad blood created by the 2001EDSA II revolution that saw then-President Joseph Estrada step down from office, and his Vice President Gloria Macapagal-Arroyo assume the presidency may be forgotten for the sake of relevance in the current political landscape.

Over 20 years after EDSA II, Estrada--tongue in cheek or not--has urged fellow former President Arroyo to "run again". Not only that, but "Erap" also insisted to become her campaign manager.

(From left to right) Former President Gloria Macapagal-Arroyo, Davao City Mayor Sara Duterte, Pampanga Vice Governor Lilia Pineda and senatorial candidate Robin Padilla (Lakas-CMD Media)

Estrada made this request Monday afternoon, April 4, in a phone call with Arroyo, who was having an advance public birthday celebration with UniTeam Senate slate members and vice presidential bet Davao City Mayor Sara Duterte.

The conversation was on loudspeaker and could be heard by the several thousands of Kapampangans in attendance at the event.

"Maligayang kaarawan sa inyo (Happy birthday to you)," Estrada told Arroyo, who replied, "Same to you po sa (on) April 19."

He then prodded his fellow former Malacañang resident to "run again", although he didn't mention for which position. It should be noted that Arroyo--and Estrada, for that matter--are prevented by the Constitution from vying for the presidency a second time.

"Sana po tumakbo kayo ulit (I hope you run again), ako po ang magpi-prisintang campaign manager niyo (I will apply as your campaign manager)," Estrada said. So unexpected was his request that it elicited laughter from the mostly reserved Lubao crowd.

The former Pampanga congresswoman's reply was an unresponsive "Salamat (Thank you)," despite being visibly amused.

"I hope you run again, I'll be your campaign manager," Estrada insisted, adding "We need you, we need you" to convince her.

Arroyo responded by repeatedly saying "Thank you" and by also telling the former Manila Mayor that "We need you also."

They finished their short conversation by exchanging wishes of "More power to you."

Arroyo, a former House Speaker, is actually running in the May 9 polls. She is seeking a return to the House of Representatives as Pampanga 2nd district representative.

Arroyo will turn 75 tomorrow, April 5 while Estrada will turn 85 on April 19.

Arroyo was Estrada's vice president during his tenure as chief executive from 1998 to 2001. The latter's alleged connection to jueteng (illegal numbers game) payoff scandal led to EDSA II, where he peacefully overthrown.

Related Tags

gloria macapagal-arroyo Pampanga 40422 run again we need you Sara Duterte joseph estrada birthday UniTeam
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.