Scroll to top

Dry All

Air Conditioning Specialists

Dry All

Offering products for air conditioning, installation and service support products.

Replaceable Core Shell [DRC 48 Series]

Core shell with replaceable solid core is used in Liquid and/or Suction lines in large refrigeration and air-conditioning systems.

Recommended For: Large Refrigeration and Air- Conditioning systems.

Contact Us

Our Brands

Offering products for air conditioning, installation and service support products.

document.addEventListener("DOMContentLoaded", function() { const scrollBox = document.querySelector(".tab-scroll"); const scrollBtn = document.getElementById("tabScrollBtn"); if (!scrollBox || !scrollBtn) return; scrollBtn.addEventListener("click", function() { const maxScroll = scrollBox.scrollHeight - scrollBox.clientHeight; if (scrollBox.scrollTop < maxScroll - 5) { scrollBox.scrollTop +=scrollBox.clientHeight; } else { scrollBox.scrollTop=0; } }); scrollBox.addEventListener("scroll", function() { const maxScroll=scrollBox.scrollHeight - scrollBox.clientHeight; if (scrollBox.scrollTop>= maxScroll - 5) { scrollBtn.innerText = "Scroll Up"; } else { scrollBtn.innerText = "Scroll Down"; } }); /* When tab clicked → keep it visible */ document.querySelectorAll(".tablinks").forEach(link => { link.addEventListener("click", function() { setTimeout(() => { this.scrollIntoView({ behavior: "smooth", block: "center" }); }, 100); }); }); }); document.addEventListener("DOMContentLoaded", function() { const scrollBox = document.querySelector(".tab-scroll"); if (!scrollBox) return; scrollBox.addEventListener("wheel", function(e) { const delta = e.deltaY; const atTop = scrollBox.scrollTop === 0; const atBottom = scrollBox.scrollTop + scrollBox.clientHeight >= scrollBox.scrollHeight; /* Allow internal scroll */ if ( (delta < 0 && !atTop) || (delta> 0 && !atBottom) ) { e.preventDefault(); scrollBox.scrollTop += delta; } }, { passive: false }); });