Contact Us

ABOUT US

After more than 35 years in business, we consider Discount Building Productss to be an expert window, roofing, and siding supplier to the general public in Winnipeg.
Our staff is well-trained to answer your questions regarding exterior home renovations. Not only do we help you get the right supplies for your renovation, we offer our products at the guaranteed lowest prices.
As a warehouse distribution centre, we stock large quantities of products to ensure our customers receive prompt attention to their order and the very lowest prices.
We sell costume-sized quality windows at a 30% lower rate than our competitors on the market. We will costume make the window to match the size you are looking and take care of the installations for you.
Or are you looking for a quality comfortable mattress, futon or waterbed? Give us a call! We’re sure you won’t be disappointed in our selection.

<!-- Contact Button -->
<button class="product-contact-btn" onclick="openProductPopup()">
Contact for Details
</button>

<!-- Popup Background -->
<div id="productPopup" class="product-popup-overlay">
<div class="product-popup-box">
<button class="product-popup-close" onclick="closeProductPopup()">×</button>

<h2>Contact Us About This Product</h2>

<p>
Please contact us for current availability, size options, and pricing.
</p>

<div class="product-contact-info">
<p><strong>Phone:</strong> <a href="tel:204XXXXXXX">204-XXX-XXXX</a></p>
<p><strong>Email:</strong> <a href="mailto:info@discountbuildingproducts.ca">info@discountbuildingproducts.ca</a></p>
<p><strong>Location:</strong> Winnipeg, MB</p>
</div>

<p class="product-popup-note">
Please mention the product name when contacting us.
</p>
</div>
</div>

<style>
.product-contact-btn {
background-color: #1f2933;
color: #ffffff;
border: none;
padding: 12px 22px;
font-size: 15px;
font-weight: 600;
border-radius: 6px;
cursor: pointer;
margin-top: 12px;
transition: all 0.2s ease;
}

.product-contact-btn:hover {
background-color: #000000;
transform: translateY(-1px);
}

.product-popup-overlay {
display: none;
position: fixed;
z-index: 999999;
left: 0;
top: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.65);
align-items: center;
justify-content: center;
padding: 20px;
}

.product-popup-box {
background: #ffffff;
max-width: 460px;
width: 100%;
border-radius: 14px;
padding: 32px 28px;
position: relative;
text-align: center;
box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
animation: popupFadeIn 0.25s ease;
}

.product-popup-box h2 {
margin-top: 0;
margin-bottom: 12px;
font-size: 24px;
color: #1f2933;
}

.product-popup-box p {
font-size: 15px;
line-height: 1.6;
color: #444444;
margin-bottom: 12px;
}

.product-contact-info {
background: #f5f5f5;
border-radius: 10px;
padding: 16px;
margin: 18px 0;
text-align: left;
}

.product-contact-info p {
margin: 8px 0;
}

.product-contact-info a {
color: #1f2933;
text-decoration: none;
font-weight: 600;
}

.product-contact-info a:hover {
text-decoration: underline;
}

.product-popup-note {
font-size: 14px;
color: #666666;
}

.product-popup-close {
position: absolute;
right: 14px;
top: 10px;
background: transparent;
border: none;
font-size: 30px;
line-height: 1;
cursor: pointer;
color: #555555;
}

.product-popup-close:hover {
color: #000000;
}

@keyframes popupFadeIn {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>

<script>
function openProductPopup() {
document.getElementById("productPopup").style.display = "flex";
}

function closeProductPopup() {
document.getElementById("productPopup").style.display = "none";
}

window.onclick = function(event) {
var popup = document.getElementById("productPopup");
if (event.target === popup) {
popup.style.display = "none";
}
};
</script>

This will close in 20 seconds