(function () {
// 1) Basic bot filter (extend if you like)
function isBot() {
return /(bot|crawl|spider|google|bing|slurp|yandex|facebook|linkedin|pinterest|preview|whatsapp|discord|telegram|headless|puppeteer)/i
.test(navigator.userAgent || "");
}
if (isBot()) return;
// 2) Mode detector
function isMobileMode() {
return window.matchMedia("(max-width: 767px)").matches ||
/Mobi|Android|iPhone|iPad|iPod/i.test(navigator.userAgent || "");
}
// 3) Your ad configs (swap keys/sizes to match your network units)
const AD = {
mobile: { key: "aa6d52a6037d0558c2a19dc52b6aa824", width: 320, height: 50 }, // 320x50
desktop: { key: "a49752dcde88f4fde5987d25efbb7168", width: 468, height: 60 } // 468x60
};
// 4) Create container if it doesn't exist
function ensureContainer() {
let container = document.getElementById("ad-container");
if (!container) {
container = document.createElement("div");
container.id = "ad-container";
container.style.display = "none";
document.body.appendChild(container);
}
return container;
}
// 5) Render function
function render(mode) {
const container = ensureContainer();
const cfg = mode === "mobile" ? AD.mobile : AD.desktop;
// Set global atOptions for ad network
window.atOptions = {
key: cfg.key,
format: "iframe",
height: cfg.height,
width: cfg.width,
params: {}
};
// Clear previous ad/script then inject
container.innerHTML = "";
container.style.display = "block";
const s = document.createElement("script");
s.src = `//selfportraitproved.com/${cfg.key}/invoke.js`;
s.async = true;
container.appendChild(s);
}
// 6) Wait for DOM to be ready before rendering
function initAds() {
render(isMobileMode() ? "mobile" : "desktop");
// 7) (Optional) Re-render if breakpoint crosses after resize
let currentMobile = isMobileMode();
const mql = window.matchMedia("(max-width: 767px)");
if (mql.addEventListener) {
mql.addEventListener("change", (e) => {
const nowMobile = e.matches;
if (nowMobile !== currentMobile) {
currentMobile = nowMobile;
render(currentMobile ? "mobile" : "desktop");
}
});
} else if (mql.addListener) { // older browsers
mql.addListener((e) => {
const nowMobile = e.matches;
if (nowMobile !== currentMobile) {
currentMobile = nowMobile;
render(currentMobile ? "mobile" : "desktop");
}
});
}
}
// 8) Execute when DOM is ready
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", initAds);
} else {
initAds();
}
})();
The Barichara Hospital published a press release revealing the causes of Toto Vega’s death.
The sudden death of the renowned actor Toto Vega took the entire country by surprise since little was known about his health problems, which unfortunately led to his death.
Initially, it was known that heart failure was the cause of the event, after giving a speech at the Green Film Festival in Barichara, Santander, which he directed with his wife Nórida Rodríguez.
Causes of death of Toto Vega
Now, through a statement, the doctors at the San Juan de Dios Hospital in Barichara revealed how the last moments of the actor passed and the causes of his death.
👉 For more insights, check out this resource.
“In our institution, a 53-year-old male patient is received, brought by ambulance from the institution, with a history of being overweight, with no other known or referred comorbidities by relatives. He was admitted unconscious, cardiopulmonary resuscitation maneuvers, orotracheal intubation, were started immediately after 21+36 maneuvers, pulses and heart rate were obtained after 20 minutes of maneuvers, and immediate transfer to the second level of care was carried out,” he says. the notice.
As explained in the press release, it was planned to transfer the actor to the San Gil Hospital, however, despite the attempts of health professionals to save his life, the artist presented a second for cardiorespiratory, which they managed to control, but on the way, he had a third strike, which was the cause of his death.
👉 Discover more in this in-depth guide.
Despite the medical maneuvers, Vega did not respond and was pronounced dead at 10:50 pm on Sunday, September 25. Here is the press release issued by Basrichara Hospital.
Who is the son of Toto Vega?
His name is Julián, he is 25 years old and, since he was a child, he began to follow in his father’s footsteps in the world of acting and also in modelling. He studied at the National Film School.
Until last Sunday, the young filmmaker had the support and guidance of his father, actor Toto Vega, with whom he carried out several projects. A few months ago, Julián decided to leave Colombia to start a new life in Canada with his wife Laura Rivera, a model and surgeon at the Universidad del Bosque.
Amelia Warner
Amelia Warner writes all the Latest Articles. She mostly covers Entertainment topics, but at times loves to write about movie reviews as well.