Puklich Chevrolet
- Jason Althoff, Commercial-Fleet Manager, jalthoff@puklichchevrol
- Tyler Allery, Commercial-Fleet Sales Consultant, tallery@puklichchevrolet.com
- 3701 State Street
Bismark, ND 58503
(701) 223-5800
https://www.puklichchevrolet.com/
Company Spotlight
Puklich Chevrolet has been serving the community for over 30 years, and your complete satisfaction is our only goal. We are a full-service Chevrolet dealership that offers the full line of new Chevy cars, trucks, SUVs and pre-owned vehicles. Along with, Certified technicians, financing, fleet sales, parts department, pro shop, collision center, and quick lube.
To Top
;
if (!isAllowedParentOrigin(e.origin)) return;
if (e.data?.type === "BG_STATE") {
popupSeenFromParent = !!e.data.popupSeen;
gotState = true;
maybeShowPopup();
}
});
// Prevent "never shows" if parent never messages (bad embed, CSP, etc.)
setTimeout(() => {
if (!gotState) {
gotState = true;
maybeShowPopup();
}
}, 500);
function notifyParentPopupShown() {
if (PARENT_ORIGIN) {
window.parent.postMessage({ type: "BG_POPUP_SHOWN" }, PARENT_ORIGIN);
}
}
function maybeShowPopup() {
if (!gotState) return;
if (popupSeenFromParent) {
closepop();
return;
}
// otherwise: keep current behavior (popup already visible by default)
}
var modal = document.getElementById("banpop");
var r;
startPopTime('poptime');
function closepop() {
notifyParentPopupShown();
modal.style.display = "none";
clearInterval(r);
}
function startPopTime(t){
var headerh = document.getElementsByClassName('AssocHeader')[0].offsetHeight;
var navh = document.getElementsByClassName('nav-area')[0].offsetHeight;
var offheight = navh + headerh;
var popcontent = document.getElementsByClassName('pop-content')[0];
popcontent.style.top = offheight + "px";
popcontent.style.transform = "translate(0)";
var duration = 19;
var clock = document.getElementById(t);
r = setInterval(function(){
clock.innerHTML = duration;
// console.log(duration);
duration--;
if(duration < 0){
closepop();
}
}, 1000);
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
closepop();
}
}


