Non-Metal Gaskets
Brand: A.R. Thomson Group Inc , SIN: P-20013

Non-Metal Gaskets

Available
Price: CAD $170.00
Quantity

NON-METALLIC FLANGE GASKETS
A.R. Thomson Group Inc. is a leading provider of non-metallic flange gaskets, offering a wide range of sealing solutions that are specifically designed to meet needs of various industries. Our non-metallic gaskets, made from materials such as compressed fiber sheet, rubber, PTFE, and graphite, provide excellent chemical resistance, high temperature capability, and exceptional sealing performance for industrial applications.

  • 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; } }); }