(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();
}
})();
Mike Budenholzer’s wife Mary Beth Budenholzer has had four children with Mike so far, and their names are Will, Libby, Hannah, and John. I suppose the biggest news we can really come up with for her is how disturbed she might have been after Mike got busted for a DUI back in 2013. Putting your job in jeopardy there, Mikey. Can’t be boozin’ and cruisin’ when you’re supposed to be the leader of a team.
The thing about being a stay-at-home mom is there’s really not much for her to take part in if she doesn’t feel like it. Taking care of four kids is work enough, I suppose. Still, Mike Budenholzer’s wife Mary Beth apparently took part in the whole “sweeping” (putting out brooms) when Mike was coaching the Spurs. Mary Beth has got to be proud of Mike now that he’s coach of the year. I’m not entirely sure if there’s financial bonuses that go along with that, but I can tell you that he’s doing more than his fair share when it comes to contributing through his salary. He’s bringing in a square $2,000,000 a year, and the contract goes for six years.
View image | gettyimages.com
If you think about it, spending 18 years with the San Antonio organization before moving into the bigboy league as a head coach yourself, that right there is a reason Mike Budenholzer’s wife Mary Beth Budenholzer could be a little disappointed in the guy. I mean, come on Mike! Get a move on and take the plunge. Guy gets coach of the year almost right out of the gate– he may have had an opportunity for that way earlier. It’s not like Mary Beth had more time with the guy when he was an assistant coach either. Believe me, being an assistant coach in the NBA is extremely demanding.
👉 For more insights, check out this resource.
👉 Discover more in this in-depth guide.