top of page

Conéctate con nosotros

Contáctenos por correo electrónico o teléfono

Nos encantaría saber de usted. Póngase en contacto con nosotros hoy para descubrir cómo nuestras soluciones de refrigeración de vanguardia pueden ayudar a que su negocio prospere.

DIRECCIÓN

Contacto

Horario de apertura

850 San Pablo St. #26

Rochester, Nueva York 14605

Estados Unidos de América

Lun - Vie

10:00 am – 6:00 pm

Sáb dom

Cerrado

¡Contáctenos!

Tómese un momento para completar el formulario.

Thanks for submitting!

850 San Pablo St. #26

Rochester, Nueva York 14605

Estados Unidos de América

bottom of page
// Wait for the page to fully load document.addEventListener("DOMContentLoaded", function() { // Get the iframe containing your Wix website var iframe = document.querySelector("iframe"); // Ensure the iframe is found if (iframe) { // Get the document inside the iframe var iframeDocument = iframe.contentDocument || iframe.contentWindow.document; // Create a div element for the popup var popup = iframeDocument.createElement("div"); popup.textContent = "This is a test popup!"; popup.style.position = "fixed"; popup.style.top = "50%"; popup.style.left = "50%"; popup.style.transform = "translate(-50%, -50%)"; popup.style.backgroundColor = "white"; popup.style.padding = "20px"; popup.style.border = "2px solid black"; popup.style.borderRadius = "5px"; popup.style.zIndex = "9999"; // Append the popup element to the body of the document inside the iframe iframeDocument.body.appendChild(popup); } });