Gaskets
Brand: A.R. Thomson Group Inc , SIN: AR.Gasket

Gaskets

Available
Price: CAD $150.00
Quantity

A.R. Thomson Group Inc. was established in 1967 as a Canadian manufacturer & distributor of gaskets and other fluid containment products. No matter what your gasket and sealing needs, we can help.

Gasket Quality Assured:
A.R. Thomson Group Inc. maintains an ISO 9001:2015 Quality Management System manufacturing, assembly and distribution of CNC cut products, gaskets, sealing products and fasteners, distribution of valve products and fittings, and repair of mechanical seals.

  • Pump Type: Centrifugal Mondset Pump
  • Flow Rate: N/A
  • Temperature: N/A
  • Viscosity: N/A
  • Validity: N/A
function toggleFavorite(productId) { fetch('https://www.emaarenergy.ca/favorites/toggle', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': document.querySelector('meta[name="csrf-token"]').content }, body: JSON.stringify({ product_id: productId }) }) .then(res => res.json()) .then(data => { const text = document.getElementById('fav-text-' + productId); if (data.status === 'added') { text.innerText = 'Remove from Favorite'; } else { text.innerText = 'Add to Favorite'; } const badge = document.querySelector('.fa-regular.fa-heart')?.closest('a')?.querySelector('.notify-dot'); if (badge && data.count !== undefined) { badge.innerText = data.count; } }); }