<!--

// Welcome to Tipster! Before you start, make sure you've read and agree to the
// "Conditions of Use" in the HTML document below.


// This script is object orientated.
// It works by creating "tip objects", each of which corresponds to a DIV in the page below.
// Each object contains a 'template' used for formatting tips, and settings for that object.
// Here are some examples to get you started:


// First, create a new tip object, and pass it its own name so it can reference itself.
var docTips = new TipObj('docTips');
with (docTips)
{
 // Next, we set the appearance and style of the tips displayed by this tip object.
 // Each tip object must have a string called 'template' that contains some specially-formatted
 // HTML to write to its DIV. This example has two nested tables, a border and a background.
 // The special bits are the %2%, %3% and so on halfway through. These correspond to values we
 // set in the tips.tipName arrays later: %0% is the X value, %1% is Y, and %2% onwards are
 // whatever other info we have in there (width, text etc...). This example sets the width %2%
 // of the table, and inserts some content which is the text %3%.
 // You might want to put extra information in the tip arrays, and use %4%, %5% onwards in the
 // template for tip headers, footers, customisable colours etc... see the next tip object for
 // another example.

 template = '<table bgcolor="#003366" cellpadding="1" cellspacing="0" width="%2%" border="0">' +
  '<tr><td><table bgcolor="#6699CC" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 // Next, you can list one or more named tips to call later on in your page. This is useful if
 // you want to show the same tip several times in the page, or on several pages.
 //
 // We organise tips in arrays like so: tips.tipName = new Array(X, Y, width, text, ....);
 // The first two parameters, X and Y, are the distances of the tip from the mouse cursor position
 // if they're set as numbers. If they're strings ('in quotes'), the script calculates them as
 // expressions and ignores the mouse position. They are the only compulsory parameters.
 // You can also use the 'page' object included with this script for fancy positioning
 // effects. Functions include 'page.winW()' and 'page.winH()' to get the window area dimensions,
 // and 'page.scrollX()' and 'page.scrollY()' for the current scroll position, so you can align
 // your tips however you want... see the examples below.
 //
 // Alternatively, you can also create tips inline later in the page like so:
 // <tag onmouseover="tipObjectName.newTip('tipName', X, Y, ....and so on....)">
 // This automatically creates and shows a new tip (just give them random names).
 // Make sure you don't use HTML formatting inside HTML tag event handlers for your tip text.
 //
 // And if you don't want to do *that*, see below for an optional function that can convert
 // TITLE="..." attributes into tips automatically.


 // This 'mysite' tip will show 75px left of the cursor and 15px below. As you can see %2% is
 // a width of 150px, and %3% is a text string, according to our template above.
 tips.mysite = new Array(-75, 15, 150, 'Visit this for updates, help and more info');
 tips.welcome = new Array(5, 5, 100, 'Hope you like it...');
 tips.useful = new Array(5, 5, 150, 'This can add important context information to any link...');
 // This next tip uses a formula to position the tip 110 pixels from the right edge of the screen.
 tips.formulae = new Array('page.scrollX() + page.winW() - 110', -20, 100,
  'This tip is always on the right edge...');
 tips.format = new Array(5, 5, 150, 'That means <i>italics</i>...<br /><hr />...etc');


 // Finally, you can set some optional properties to customise the behavious of this object.
 //
 // How much of a delay do you want between pointing and action? Defaults are:
 //showDelay = 50;
 //hideDelay = 200;
 //
 // False will hide tips instantaneously. Fading only works under IE/Win and NS6+.
 //doFades = false;
 // You can change the minimum and maximum opacity percentages, defaults:
 //minAlpha = 0;
maxAlpha = 80;
 //
 // How fast the transparency changes (between 1 and 100), higher means faster fades.
 //fadeInSpeed = 20;
 //fadeOutSpeed = 20;
 //
 // Tip stickiness, from 0 to 1, defines how readily the tip follows the cursor. 1 means it
 // follows it perfectly (the default), 0 is a static tip, and decimals are 'floating' tips.
 //tipStick = 0.2;
 //
 // IE 5.5+ select box fix. This will enable tips to appear over <SELECT> elements in the page.
 //IESelectBoxFix = true;
}

// Later in the document, use this syntax to show tips from links or other HTML tags:
// <a href="file.html" onmouseover="tipObjName.show('tipName')" onmouseout="tipObjName.hide()">




// Here's a second demo tip object. Feel free to delete it if you're not using it!
// I've included a tip header here in this template, %3% is the header text and %4% is
// now the main text. As you can see you can basically format your tips any way you want.
// This tip also includes mouse event handlers to show a second-level tip, just like in
// the body of the page below, so you can nest tips within tips, and a 'tipStick' of 0 so
// it never follows the mouse.
var staticTip = new TipObj('staticTip');
with (staticTip)
{
 // I'm using tables here for legacy NS4 support, but feel free to use styled DIVs.
 template = '<table bgcolor="#000000" cellpadding="0" cellspacing="0" width="%2%" border="0">' +
  '<tr><td><table cellpadding="3" cellspacing="1" width="100%" border="0">' +
  '<tr><td bgcolor="#336666" align="center" height="18" class="tipClass">%3%</td></tr>' +
  '<tr><td bgcolor="#009999" align="center" height="*" class="tipClass">%4%</td></tr>' +
  '</table></td></tr></table>';

 // HIERARCHIAL TIPS: To call one tip object from within another tip object, make sure you
 // pass the a reference to the current object as the second parameter to the show() function.
 tips.links = new Array(5, 5, 100, 'Extra Links',
  '- <a href="javascript:alert(\'Useful indeed...\')">Section 1</a> -<br />' +
  '- <a href="#" name="nest1trig" onmouseover="nestTip.show(\'nest1\', staticTip)" ' +
   'onmouseout="nestTip.hide()">NESTED TIP 1 &gt;</a> -<br />' +
  '- <a href="#" name="nest2trig" onmouseover="nestTip.show(\'nest2\', staticTip)" ' +
   'onmouseout="nestTip.hide()">NESTED TIP 2 &gt;</a> -<br />');

 tipStick = 0;
}

// Here's the other tip object called by the one above, for hierarchial tips.
var nestTip = new TipObj('nestTip');
with (nestTip)
{
 template = '<table bgcolor="#000000" cellpadding="1" cellspacing="0" width="%2%" border="0">' +
  '<tr><td><table bgcolor="#009999" cellpadding="3" cellspacing="0" width="100%" border="0">' +
  '<tr><td class="tipClass">%3%</td></tr></table></td></tr></table>';

 tips.nest1 = new Array(10, 0, 90,
  '<a href="javascript:alert(\'A regular popup menu...\')">Relative Position</a>');

 // This tip is positioned via formulae based on its parent tip's position...
 tips.nest2 = new Array('staticTip.xPos + 95', 'staticTip.yPos + 50', 120,
  '<a href="javascript:alert(\'Nested tip 2\')">Absolutely positioned static tip...</a>');

 tipStick = 0;
}


// Here's one illustrating a decimal tipStick value so it floats along behind the cursor.
var stickyTip = new TipObj('stickyTip');
with (stickyTip)
{
 template = '<table bgcolor="#000000" cellpadding="1" cellspacing="0" width="%2%" border="0" color="FFFFFF">' +
  '<tr><td><table bgcolor="#000000" cellpadding="4" cellspacing="0" width="100%" border="0">' +
  '<tr><td align="center" class="tipClass">%3%</td></tr></table></td></tr></table>';

//Symmetrical Seals

 tips.S06 = new Array(25, -55, 450, '<span class="tip"><h2>S6</h2>Long-Life Symmetrical U-Cup for Hydraulic Cylinders</span><hr size="1" /><img src="../img/InfoPics/S6NewInfo.jpg" width="175" height="150" class="tipimg"> Unidirectional, single acting with beveled lip design for maximum fluid sealing ability, for use as either rod or piston seal in light- to medium-duty hydraulic applications. Economical hydraulic seal.');
 
 tips.S06A = new Array(25, -55, 450, '<span class="tip"><h2>S6A</h2>Symmetrical U-Cup for Light-Duty Cylinders</span><hr size="1" /><img src="../img/InfoPics/S6AInfo.jpg" width="175" height="150" class="tipimg"> Unidirectional, single acting rod or piston seal designed to provide longest service life in light duty, low-friction hydraulic or pneumatic applications. Thin, flexible lip design quickly responds to low pressure and provides smooth movement with less breakaway force. Also a very economical seal.');
 
 tips.S06B = new Array(25, -55, 450, '<span class="tip"><h2>S6B</h2>Symmetrical U-Cup for Contamination Exclusion</span><hr size="1" /><img src="../img/InfoPics/S6BInfo.jpg" width="175" height="150" class="tipimg"> Unidirectional, single acting rod or piston seal design provides good contamination exclusion but reduced sealing performance due to seal lip design. Also used in applications with worn rods and old equipment. Retro fits seals of similar design.');
 
 tips.S06C= new Array(25, -55, 450, '<span class="tip"><h2>S6C</h2>Compact Symmetrical Hydraulic Seal</span><hr size="1" /><img src="../img/InfoPics/S6CInfo.jpg" width="175" height="150" class="tipimg"> Unidirectional, single acting seal design for low-, medium-, and high-pressure rod or piston applications. Designed to adjust to large pressure drops without exhausting like normal loaded U-cups would do and eliminates seal failure due to trapped pressure behind the O-ring. Higher lip load forces for improved low pressure sealing.');
 
 tips.S06E= new Array(25, -55, 450, '<span class="tip"><h2>S6E</h2>Unitized Anchored U-Cup</span><hr size="1" /><img src="../img/InfoPics/S6EInfo.jpg" width="175" height="150" class="tipimg"> Unidirectional, single acting seal for use as either a piston or rod seal. Anchor centers seal in groove, adding stability in short grooves to prevent twisting.');
 
 tips.S18 = new Array(25, -55, 450, '<span class="tip"><h2>S18</h2>O-Ring Loaded Symmetrical U-Cup with Beveled Lips</span><hr size="1" /><img src="../img/InfoPics/S18Info.jpg" width="175" height="150" class="tipimg"> Unidirectional, single acting with beveled lip design for maximum fluid sealing ability, for use as either rod or piston seal in light- to medium-duty hydraulic applications where low-pressure start up may be present. Will retrofit any square, deep or B Poly Pak type seal or seal of similar design. To avoid potential seal failure, do not use energizer loaded seals for back-to-back bidirectional piston sealing applications.');
 
 tips.K18 = new Array(25, -55, 450, '<span class="tip"><h2>K18</h2>O-Ring Loaded Symmetrical U-Cup with Scraper Lip Design</span><hr size="1" /><img src="../img/InfoPics/K18Info.jpg" width="175" height="150" class="tipimg"> Unidirectional, single acting with scraper seal lips designed to move contamination away from the sealing lips. For use as either rod or piston seal in light- to medium-duty hydraulic applications where low-pressure startup may be present. Will retrofit any square, deep or B Poly Pak type seal or seal of similar design. To avoid potential seal failure, do not use energizer loaded seals for back-to-back bidirectional piston sealing applications.');
 
 tips.S22 = new Array(25, -55, 450, '<span class="tip"><h2>S22</h2>Anchored U-Cup</span><hr size="1" /><img src="../img/InfoPics/S22Info.jpg" width="175" height="150" class="tipimg"> For use either as piston or rod seal. Anchor centers seal in groove, adding stability in short grooves or high-speed presses.');
 
 tips.S19B = new Array(25, -55, 450, '<span class="tip"><h2>S19B</h2>PTFE Hydraulic  Seal </span><hr size="1" />Designed for low friction, extreme temperature service or chemically aggressive enviroments. Symmetrical design allows seal to be fitted lips first.<hr size="1" />S19B');
 
 tips.S1012 = new Array(25, -55, 450, '<span class="tip"><h2>S10-12</h2>Premium Pre-Energized Long-Life Vee Packing</span><hr size="1" /><img src="../img/InfoPics/S10-12Info.jpg" width="175" height="150" class="tipimg"> Premium Vee packing that does not require the tightening of the gland to maintain a positive seal due to the pre-energized design and material of the Vee rings, leading to 3 to 4 times the service life over traditional rubber fabric Vee packing. Retro fits seals of similar design.');
 
  tips.S1315 = new Array(25, -55, 450, '<span class="tip"><h2>S13-15</h2>Premium Pre-Energized Low-Friction Vee Packing</span><hr size="1" /><img src="../img/InfoPics/S13-15Info.jpg" width="175" height="150" class="tipimg"> Premium Vee packing that does not require the tightening of the gland to maintain a positive seal. Pre-energized design and center supported Vee rings result in the lowest friction Vee packing available, leading to 3 to 4 times the service life over traditional rubber fabric Vee packing. Will retrofit any W-packing or seal of similar design.');
 
 
 
 //ROD SEALS
 tips.S1 = new Array(25, -55, 450, '<span class="tip"><h2>S1</h2>Premium Pre-Energized Low-Friction Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s1_3d.gif" width="175" height="150" class="tipimg">Non-Symmetrical design to provide the longest service life in medium- to high-pressure hydraulic rod sealing applications. Beveled lip for maximum fluid sealing ability. Economical hydraulic rod seal.');
 tips.S1A = new Array(25, -55, 450, '<span class="tip"><h2>S1A</h2>Light Duty Low-Friction Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s1a_3d.gif" width="175" height="150" class="tipimg">Non-Symmetrical design to provide longest service life in light duty, low-friction hydraulic and pneumatic applications. The thin, flexible lip design quickly responds to low pressure and provides smooth movement with less breakaway force. Also a very economical rod seal.');
 tips.S1B = new Array(25, -55, 450, '<span class="tip"><h2>S1B</h2>Contamination-Exclusion Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s1b_3d.gif" width="175" height="150" class="tipimg">Non-symmetrical seal design provides long service life in applications with worn rods and old equipment. Good contamination exclusion but reduced sealing performance due to a knife-edge seal lip design.'); 
 tips.S2 = new Array(25, -55, 450, '<span class="tip"><h2>S2</h2>Ultra High-Pressure Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s2_3d.gif" width="175" height="150" class="tipimg">Non-symmetrical design with integrated positive actuated live trapezoidal backup ring to eliminate seal extrusion in high-pressure systems, with ultra high-pressure spikes. Reduced friction and wear provide a long service life.'); 
 tips.S2A = new Array(25, -55, 450, '<span class="tip"><h2>S2A</h2>High-Pressure Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s2a_3d.gif" width="175" height="150" class="tipimg">Non-symmetrical seal designed to eliminate seal extrusion in high-pressure systems with high pressure spikes. The integrated positive actuated live rectangular backup ring eliminates extrusion, yet allows this seal to be fitted when fitment and assembly are more difficult. Reduced friction and wear provide a long service life.'); 
 tips.S3 = new Array(25, -55, 450, '<span class="tip"><h2>S3</h2>Loaded Non-Symmetrical Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s3_3d.gif" width="175" height="150" class="tipimg">Designed to provide positive sealing in medium- to high-pressure service applications where low pressure startup may be present. The non-symmetrical design provides better stability and static OD sealing, which is not provided by a symmetrical seal or Poly Pak type seal. Will retrofit any Poly Pak type seals or seals of similar design.'); 
 tips.S4 = new Array(25, -55, 450, '<span class="tip"><h2>S4</h2>Ultra High-Pressure Loaded Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s4_3d.gif" width="175" height="150" class="tipimg">Non-symmetrical design with integrated positive actuated live trapezoidal backup ring to eliminate seal extrusion in high-pressure systems, with ultra high-pressure spikes and where low pressure start up may be present.'); 
 tips.S5 = new Array(25, -55, 450, '<span class="tip"><h2>S5</h2>Premium Long-Life Pneumatic Seal</span><hr size="1" /><img src="../img/seal_profile_small/s5_3d.gif" width="175" height="150" class="tipimg">Non-symmetrical seal designed with a radius edge of the lip to ensure lubrication retention on the rod, providing a long service life in pneumatic sealing application.');
 tips.S8 = new Array(25, -55, 450, '<span class="tip"><h2>S8</h2>Compact Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s8_3d.gif" width="175" height="150" class="tipimg">For low- to high-pressure applications. Designed to adjust to large pressure drops without exhausting like normal loaded U-cups would do and eliminates seal failure due to trapped pressure behind the O-ring.'); 
 tips.S16 = new Array(25, -55, 450, '<span class="tip"><h2>S16</h2>Hat Seal</span><hr size="1" /><img src="../img/seal_profile_small/s16_3d.gif" width="175" height="150" class="tipimg">Mainly used in old presses. Replacement seal not recommended for new designs.'); 
 tips.S17 = new Array(25, -55, 450, '<span class="tip"><h2>S17</h2>Premium Double-Lip Long-Life Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s17_3d.gif" width="175" height="150" class="tipimg">For medium- to high-pressure, design offers improved sealing performance and stability due to its secondary lip that also retains lubrication between both dynamic seal lips, providing long service life, especially for telescopic and long stroke cylinders.');
 tips.S17A = new Array(25, -55, 450, '<span class="tip"><h2>S17A</h2>Premium High-Pressure Double-Lip Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s17a_3d.gif" width="175" height="150" class="tipimg">Eliminates seal extrusion in high-pressure systems with shock load. Design offers improved sealing performance and stability due to its secondary lip that also retains lubrication between both dynamic seal lips, providing long service life.');
 tips.S17B = new Array(25, -55, 450, '<span class="tip"><h2>S17B</h2>Premium Loaded Double-Lip Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s17b_3d.gif" width="175" height="150" class="tipimg">Designed to provide long service life in medium- to high-pressure service applications where low pressure startup may be present. Improved sealing performance, extended seal life and stability due to its secondary lip.');
 tips.S17C = new Array(25, -55, 450, '<span class="tip"><h2>S17C</h2>Premium High-Pressure Double-Lip Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s17c_3d.gif" width="175" height="150" class="tipimg">Eliminates seal extrusion in high-pressure systems with shock load and low pressure start up. Improved sealing performance and stability due to its secondary lip that retains lubrication between both dynamic seal lips, providing long service life.');
 tips.S17D = new Array(25, -55, 450, '<span class="tip"><h2>S17D</h2>Compact Double Lip Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s17d_3d.gif" width="175" height="150" class="tipimg">For low- to high-pressure applications. Designed to adjust to large pressure drops without exhausting like normal loaded U-cups would do and eliminates seal failure due to trapped pressure behind the O-ring. Improved sealing performance and stability due to its secondary lip.'); 
 tips.S19 = new Array(25, -55, 450, '<span class="tip">Spring Loaded PTFE Rod Seal </span><hr size="1" />Designed for low friction, extreme temperature service or chemically aggressive environments.<hr size="1" />S19');
 tips.VSS19 = new Array(25, -55, 450, '<span class="tip"><h2>VS-S19</h2>Spring Loaded PTFE Rod Seal</span><hr size="1" /><img src="../img//InfoPics/VS-S19Info.jpg" width="175" height="150" class="tipimg">Designed for very low friction, extreme temperature service (cryogenic to high temperature) or chemically aggressive environments. The standard material for the V-spring is 301stainless steel, other materials available.');
 tips.VSS19BL = new Array(25, -55, 450, '<span class="tip"><h2>VS-S19BL</h2>Spring-Loaded PTFE Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/vs-s19bl_3d.gif" width="175" height="150" class="tipimg">Designed for very low-friction linear sealing, extreme temperature service and chemically aggressive environments. Seal design allows seal to be fitted lips first. O-ring mounted on the OD for maximum static sealing performance.');
 tips.S20 = new Array(25, -55, 450, '<span class="tip"><h2>S20</h2>T-Seal High Pressure Bi-Directional Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s20_3d.gif" width="175" height="150" class="tipimg">High-pressure compact rod seal design. The design utilizes two positively actuated live anti-extrusion backup rings to support very high pressure from both sides. Available in Viton&reg;, Nitrile, H-Nbr, Aflas&reg; and other materials. Designed to retrofit standard O-ring grooves designed for no backup, single or two backup rings. Retro fits seals of similar design.');
 tips.R30 = new Array(25, -55, 450, '<span class="tip"><h2>R30</h2>Bi-Directional Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/r30_3d.gif" width="175" height="150" class="tipimg">Capable of sealing low to high pressures from both sides with a small footprint. Compact and most economical double-acting rod seal for most bi-directional sealing applications.');
 tips.R50 = new Array(25, -55, 450, '<span class="tip"><h2>R50</h2>High-Pressure Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/r50_3d.gif" width="175" height="150" class="tipimg">Designed to eliminate seal extrusion in high-pressure systems with shock load and increased clearance gaps where improved low-pressure sealing is required. Easier fitment for smaller diameter seals. R50 provides excellent sealing performance, longer service life and stability due to additional sealing lips. Used for mining equipment and other demanding hydraulic sealing applications.');
 tips.R51 = new Array(25, -55, 450, '<span class="tip"><h2>R51</h2>Loaded Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/r51_3d.gif" width="175" height="150" class="tipimg">Designed to extend service life in high- to medium-pressure service applications where low-pressure start up may be present. R51 provides best sealing performance, longer service life and stability due to additional dynamic and static sealing lips. Easier fitment for smaller diameter seals.'); 
 tips.R52 = new Array(25, -55, 450, '<span class="tip"><h2>R52</h2>High-Pressure Long-Life Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/r52_3d.gif" width="175" height="150" class="tipimg">Eliminates seal extrusion in high-pressure systems with shock load. Improved sealing performance and stability due to additional static and dynamic sealing lips that retain lubrication between both dynamic sealing lips, providing long service life. Easier fitment for smaller diameter seals.');
 tips.R53 = new Array(25, -55, 450, '<span class="tip"><h2>R53</h2>Long-Life Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/r53_3d.gif" width="175" height="150" class="tipimg">Designed for improved sealing performance, stability and easier fitment for smaller diameter seals. Additional static and dynamic sealing lip that retain lubrication between both dynamic sealing lips provide for long service life.');
 tips.R54 = new Array(25, -55, 450, '<span class="tip"><h2>R54</h2>Premium High-Pressure Bi-Directional Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/r54_3d.gif" width="175" height="150" class="tipimg">Designed with integrated positive actuated live backup rings to eliminate seal extrusion in high-pressure systems with shock load or where increased clearance gaps are present. This is an excellent seal where positive sealing from both directions is required. Robust design for the most arduous conditions.'); 
 tips.R55 = new Array(25, -55, 450, '<span class="tip"><h2>R55</h2>High-Pressure Bi-Directional Compact Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/r55_3d.gif" width="175" height="150" class="tipimg">Designed with integrated rod wear rings acting also as backup rings to eliminate seal extrusion in high pressure systems where positive sealing from both directions is required. Compact and robust design for the most arduous conditions.');
 tips.R56 = new Array(25, -55, 450, '<span class="tip"><h2>R56</h2>High-Pressure Bi-Directional Compact Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/r56_3d.gif" width="175" height="150" class="tipimg">Designed with an energizing element for easier fitment and responsiveness to changing pressures. Integrated rod wear rings acting also as backup rings to eliminate seal extrusion in high pressure systems where positive sealing from both directions is required. Compact and robust design for the most arduous conditions.');
 tips.R56B = new Array(25, -55, 450, '<span class="tip"><h2>R56B</h2>Premium High-Pressure Bi-Directional Compact Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/r56b_3d.gif" width="175" height="150" class="tipimg">Designed with an energizing element for easier fitment and responsiveness to changing pressures. integrated positive actuated live backup rings to eliminate seal extrusion in high-pressure systems with shock load or where increased clearance gaps are present. This is an excellent seal where positive sealing from both directions is required. Robust design for the most arduous conditions.');
 tips.S9 = new Array(25, -55, 450, '<span class="tip"><h2>S9</h2>Low-Friction Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s9_3d.gif" width="175" height="150" class="tipimg">Unidirectional low-friction O-ring energized rod seal. This seal includes a secondary lip that gives the seal stability over a long stroke, acts as an excluder and retains fluid film. Can be used as a stand-alone seal.');
 tips.S91 = new Array(25, -55, 450, '<span class="tip"><h2>S91</h2>Low-Friction Heavy-Duty Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s91_3d.gif" width="175" height="150" class="tipimg">Unidirectional rod seal with square energizer ensures positive seal in even the most arduous condition. This seal has a small axial length and includes a secondary lip that provides seal stability over a long stroke, acts as an excluder, and retains fluid film. Can be used as a stand-alone seal.');
  tips.S92 = new Array(25, -55, 450, '<span class="tip"><h2>S92</h2>Premium Low-Friction Hydraulic Rod Buffer Seal</span><hr size="1" /><img src="../img/seal_profile_small/s92_3d.gif" width="175" height="150" class="tipimg">Unidirectional O-ring energized low friction and long service life rod or buffer seal designed to protect primary rod seals from pressure spikes with minimal impact on system friction. The small axial seal height reduces gland height, weight and cost. Retro fits seals of similar design.');
 tips.S92C = new Array(25, -55, 450, '<span class="tip"><h2>S92C</h2>Low-Friction Heavy-Duty Hydraulic Rod Buffer Seal</span><hr size="1" /><img src="../img/seal_profile_small/s92c_3d.gif" width="175" height="150" class="tipimg">Unidirectional rectangular energizer ensures positive seal, designed to protect primary rod seals from pressure spikes with minimal impact on system friction. The small axial seal height reduces gland height, weight and cost.');
 tips.S93 = new Array(25, -55, 450, '<span class="tip"><h2>S93</h2>Bi-Directional Low-Friction Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s93_3d.gif" width="175" height="150" class="tipimg">O-ring energized seal providing smooth movement, low friction and long service life over a wide range of light- to medium-duty applications.  The small axial seal height reduces gland height, weight and cost. Commonly used in hydraulic presses, machine tools, injection molding machines and mobile hydraulics.');
 
 tips.S98 = new Array(25, -55, 450, '<span class="tip"><h2>S98</h2>Premium Bi-Directional Low-Friction Heavy-Duty Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s98_3d.gif" width="175" height="150" class="tipimg">Square energizer ensures continuous contact along the sealing surface for low friction and improved low-pressure sealing in both directions over a wide range of service applications.  The small axial seal height reduces gland height, weight and cost.');
 
  tips.S68A = new Array(25, -55, 450, '<span class="tip"><h2>S68A</h2>Premium Low-friction Bi-Directional Hydraulic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s68a_3d.gif" width="175" height="150" class="tipimg">Providing low friction and long life over a wide range of light- to medium-duty service applications where higher pressure spikes can occur.  The contoured PTFE cap is designed to resist extrusion and twisting of the O-ring under higher pressure. The S68A can be provided to retrofit into standard O-ring grooves designed for no backup, single or two backup rings without modification.');
 
 
 tips.S92C = new Array(25, -55, 450, '<span class="tip">Low Friction Heavy Duty Hydraulic Rod Buffer Seal</span><hr size="1" /><img src="../img/seal_profile_small/s92c_3d.gif" width="175" height="150" class="tipimg">Unidirectional rectangular energizer ensures positive seal, designed to protect primary rod seals from pressure spikes with minimal impact on system friction. The small axial seal height reduces gland height, weight and cost.');	
 
 tips.S93P = new Array(25, -55, 450, '<span class="tip"><h2>S93P</h2>Low-friction Hydraulic and Pneumatic Rod Seal</span><hr size="1" /><img src="../img/seal_profile_small/s93p_3d.gif" width="175" height="150" class="tipimg">O-ring energized economical bi-directional light- to medium-duty hydraulic or pneumatic seal. The thinner PTFE cap is designed to better respond to low-pressure sealing.');
 
 
 
 
//PISTON SEALS

//High-Pressure Piston Seals (3000psi - 5000psi*)
//Single-acting/unidirectional (capable of sealing pressure from one side
							  
tips.K1 = new Array(25, -55, 450, '<span class="tip"><h2>K1</h2>Premium Long-life Low-Friction Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K1AInfo.jpg" width="175" height="150" class="tipimg">Non-symmetrical unidirectional design provides longest service life in medium- to high- pressure hydraulic piston sealing applications. Beveled lip for maximum fluid sealing ability and a stretch fit ensures stability and a tight static seal on the piston. Economical hydraulic piston seal.');

tips.K3 = new Array(25, -55, 450, '<span class="tip"><h2>K3</h2>Premium Loaded Non-Symmetrical Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K1BaInfo.jpg" width="175" height="150" class="tipimg">Single-acting design to provide positive sealing in high- to medium-pressure sealing applications with improved low pressure sealing performance. Beveled lip for maximum fluid sealing ability. Stretch fit ensures stability and a tight static seal on the piston. This is not provided by a symmetrical seal or Poly Pak type seal. The K3 piston seal will retrofit any square, deep or B Poly Pak type seal or seal of similar design. To avoid potential seal failure, do not use energizer loaded seals for back-to-back bidirectional piston sealing applications.');

tips.K1Ba = new Array(25, -55, 450, '<span class="tip"><h2>K1B</h2>Hydraulic Piston Seal for Contamination Exclusion</span><hr size="1" /><img src="../img/InfoPics/K3Info.jpg" width="175" height="150" class="tipimg">Non-symmetrical seal design provides long service life in applications with worn rods and old equipment. Good contamination exclusion but reduced sealing performance due to knife-edge seal lip design.');

tips.K16 = new Array(25, -55, 450, '<span class="tip"><h2>K16</h2>Low-Friction Piston Cup Seal</span><hr size="1" /><img src="../img/InfoPics/K16Info.jpg" width="175" height="150" class="tipimg">Pressure energized cup seal for light- to medium-duty sealing, retro fits hat packing.');

//Double-acting/bidirectional (capable of sealing pressure from both sides)

tips.K8B = new Array(25, -55, 450, '<span class="tip"><h2>K8B</h2>Premium High Pressure Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K8BInfo.jpg" width="175" height="150" class="tipimg">Rectangular energized cap seal design, for high-pressure piston sealing applications. Rectangular energizer ensures a stable, positive seal and provides continuous contact along the sealing surface. The specially designed hard wearing, 60 shore D, self-lubricated polyurethane cap is easier to install than Teflon cap seals and provides high extrusion resistance. Further the design provides a fluid reservoir between the two beveled sealing lips which retains system fluid, resulting in reduced running and breakaway friction. Beveled sealing lips for maximum fluid sealing ability protect against extrusion during pressure spikes up to 10,000 psi. The small axial seal height reduces piston height, weight and cost. Retro fits seals of similar design.');

tips.K8A = new Array(25, -55, 450, '<span class="tip"><h2>K8A</h2>High Pressure Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K8AInfo.jpg" width="175" height="150" class="tipimg">O-ring energized cap seal design. The specially designed hard wearing, 60 shore D, self-lubricated polyurethane cap is much easier to install than Teflon cap seals and provides high extrusion resistance. Further, the design provides a fluid reservoir between the two beveled sealing lips which retains system fluid, resulting in reduced running and breakaway friction. Beveled sealing lips for maximum fluid sealing ability, protect against extrusion during pressure spikes up to 10,000psi. The small axial seal height reduces piston height, weight and cost. Retro fits seals of similar design.');

tips.K8 = new Array(25, -55, 450, '<span class="tip"><h2>K8</h2>Low Friction Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K8CInfo.jpg" width="175" height="150" class="tipimg">O-ring energized filled PTFE cap seal design provides smooth movement, low friction and wear in low- to medium-duty piston sealing applications. The small axial seal height reduces piston height, weight and cost. Commonly used in hydraulic presses, machine tools, injection molding machines and mobile hydraulics. Retro fits seals of similar design.');

tips.K35 = new Array(25, -55, 450, '<span class="tip"><h2>K35</h2>Low Footprint Bi-Directional Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K35Info.jpg" width="175" height="150" class="tipimg">Squeeze-type piston seal for use on vertical or no-drift piston applications. Small footprint allows for fitment in confined areas. Economical double-acting hydraulic piston seal.');

tips.K8C = new Array(25, -55, 450, '<span class="tip"><h2>K8C</h2>Low-Friction No-Drift Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K8DInfo.jpg" width="175" height="150" class="tipimg">The design includes an integrated rubber quad ring seal in the outer filled PTFE cap to ensure positive sealing and drift-free operation in medium- to heavy-duty service application. Designed to separate and seal two different media, e.g. fluid/gas. Commonly used in piston accumulators, mobile hydraulics and where low friction, high-pressure drift-free sealing performance is required. Retro fits seals of similar design.');

tips.K8D = new Array(25, -55, 450, '<span class="tip"><h2>K8D</h2>Heavy Duty No-Drift Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K8Info.jpg" width="175" height="150" class="tipimg">The design includes an integrated rubber quad ring seal in the outer filled PTFE cap to ensure positive sealing and drift-free operation in heavy-duty service application for large diameter piston sealing applications. Designed to separate and seal two different media, e.g. fluid/gas. Commonly used in piston accumulators, mobile hydraulics and where low friction, high-pressure drift-free sealing performance is required. Retro fits seals of similar design.');

//Ultra High-Pressure Piston Seals (4000 - 28500psi*)
//Single-acting/unidirectional (capable of sealing pressure from one side)

tips.K2 = new Array(25, -55, 450, '<span class="tip"><h2>K2</h2>Premium Ultra High-Pressure Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K2Info.jpg" width="175" height="150" class="tipimg">Non-symmetrical single acting seal design with integrated positive actuated live trapezoidal backup ring to eliminate seal extrusion in high-pressure systems, or if the seal experiences ultra high-pressure spikes. Reduced friction and wear compared with loaded seals to provide a long service life.');

tips.K4 = new Array(25, -55, 450, '<span class="tip"><h2>K4</h2>Premium Ultra High-Pressure Loaded Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K4Info.jpg" width="175" height="150" class="tipimg">Designed with integrated positive actuated live trapezoidal backup ring to eliminate seal extrusion in high-pressure applications where cushioning can take place and exposes the seal to ultra high-pressure spikes and where low-pressure start up may be present. To avoid potential seal failure, do not use energizer loaded seals for back-to-back bidirectional piston sealing applications.');

tips.K2A = new Array(25, -55, 450, '<span class="tip"><h2>K2A</h2>High-Pressure Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K2AInfo.jpg" width="175" height="150" class="tipimg">Non-symmetrical piston seal designed to eliminate seal extrusion in high-pressure systems. The integrated positive actuated live rectangular backup ring eliminates extrusion, yet allows this seal to be fitted when fitment and assembly are more difficult.');

//Double-acting/bidirectional (capable of sealing pressure from both sides)

tips.P53 = new Array(25, -55, 450, '<span class="tip"><h2>P53</h2>Premium Ultra High-Pressure Bi-Directional Piston Seal with Load Bearing Live Backups</span><hr size="1" /><img src="../img/InfoPics/K2AInfo.jpg" width="175" height="150" class="tipimg">Heavy-duty squeeze-type piston seal, for use on vertical or no-drift piston. L-shaped heavy-duty backup rings handle larger clearances, misalignment and high pressures and are also easier to assemble. Maximum pressure rating 10,000psi dynamic and 20,000psi static. Rubber energizer allows for fitting on a one-piece piston design.');

tips.K81B2 = new Array(25, -55, 450, '<span class="tip"><h2>K81B2</h2>Premium Low-Friction High-Pressure Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K81B2Info.jpg" width="175" height="150" class="tipimg">Rectangular energizer ensures a stable, positive seal and provides continuous contact along the sealing surface. The filled PTFE cap provides low friction and smooth operation for hydraulic cylinders over a wide range of high-pressure sealing applications. Backup rings protect the cap from extrusion under high pressure and ultra high pressure spikes up to 8000psi. The small axial seal height reduces piston height, weight and cost. Retro fits seals of similar design.');

tips.K81S = new Array(25, -55, 450, '<span class="tip"><h2>K81S</h2>Split Ultra High Pressure Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K81SInfo.jpg" width="175" height="150" class="tipimg">Split piston cap seal, for high-pressure heavy duty piston sealing applications. The hard wearing, self-lubricated Nylon cap is step cut for easy installation without special installation tools and provides high extrusion resistance for ultra high pressure spikes up to 12,500psi. This seal is capable of repeatedly passing over cylinder ports. Rectangular energizer ensures a stable, positive seal and provides continuous contact along the sealing surface.');

tips.K20 = new Array(25, -55, 450, '<span class="tip"><h2>K20</h2>T-Seal High Pressure Bi-Directional Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K20Info.jpg" width="175" height="150" class="tipimg">High-pressure compact piston seal design. The design utilizes two positively actuated live anti-extrusion backup rings to support very high pressure from both sides. Available in Viton&reg;, Nitrile, H-Nbr, Aflas&reg; and other materials to retrofit standard O-ring grooves designed for no backup, single or two backup rings. Retro fits seals of similar design.');

tips.P50 = new Array(25, -55, 450, '<span class="tip"><h2>P50</h2>Heavy-Duty Bi-Directional Piston Seal with Live Backups</span><hr size="1" /><img src="../img/InfoPics/P50Info.jpg" width="175" height="150" class="tipimg">Squeeze-type piston seal for use on vertical or no-drift piston. Positive actuated live backup rings to eliminate seal extrusion in high-pressure applications or larger extrusion gaps.  Requires split piston design for smaller diameters for easier fitment.');

tips.P51 = new Array(25, -55, 450, '<span class="tip"><h2>P51</h2>Heavy-Duty Bi-Directional Piston Seal with Live Backups</span><hr size="1" /><img src="../img/InfoPics/P52Info.jpg" width="175" height="150" class="tipimg">Squeeze-type piston seal for use on vertical or no-drift piston. Positive actuated live backup rings to eliminate seal extrusion in high-pressure applications or larger extrusion gaps.  Rubber energizer allows for an easier fit on one-piece pistons.');

tips.P52 = new Array(25, -55, 450, '<span class="tip"><h2>P52</h2>Ultra High-Pressure Bi-Directional Piston Seal with Load Bearing Live Backups</span><hr size="1" /><img src="../img/InfoPics/P51Info.jpg" width="175" height="150" class="tipimg">Heavy-duty squeeze-type piston seal, for use on vertical or no-drift piston. L-shaped heavy-duty backup rings handle larger clearances, misalignment and high pressures and are also easier to assemble. Maximum pressure rating 10,000psi dynamic and 20,000psi static. Requires split piston design for smaller diameters for easier fitment.');

tips.P53 = new Array(25, -55, 450, '<span class="tip"><h2>P53</h2>Premium Ultra High-Pressure Bi-Directional Piston Seal with Load Bearing Live Backups</span><hr size="1" /><img src="../img/InfoPics/P53Info.jpg" width="175" height="150" class="tipimg">Heavy-duty squeeze-type piston seal, for use on vertical or no-drift piston. L-shaped heavy-duty backup rings handle larger clearances, misalignment and high pressures and are also easier to assemble. Maximum pressure rating 10,000psi dynamic and 20,000psi static. Rubber energizer allows for fitting on a one-piece piston design.');

tips.P54 = new Array(25, -55, 450, '<span class="tip"><h2>P54</h2>Ultra High-Pressure Bi-Directional Piston Seal with Load Bearing Live Backups</span><hr size="1" /><img src="../img/InfoPics/P54Info.jpg" width="175" height="150" class="tipimg">Squeeze-type piston seal for use on vertical or no-drift piston. Rubber energizer allows for easier fit on a one-piece piston. Live wear rings handle greater side load and extrusion gaps. Compact design includes piston wear ring for small axial seal height reducing piston height, weight and cost. Ideally suited to cylinders constantly operating at a vertical angle.');

tips.P55 = new Array(25, -55, 450, '<span class="tip"><h2>P57</h2>Heavy-Duty Bi-Directional Piston Seal with Live Wear Rings</span><hr size="1" /><img src="../img/InfoPics/P55Info.jpg" width="175" height="150" class="tipimg">Squeeze-type piston seal for use on vertical or no-drift piston. Live wear rings handle greater side load and extrusion gaps. Requires split piston design for smaller diameters for easier fitment. Compact design includes piston wear ring for small axial seal height reducing piston height, weight and cost. Ideally suited to cylinders constantly operating at a vertical angle.');

tips.P56 = new Array(25, -55, 450, '<span class="tip"><h2>P55</h2>Heavy-Duty Bi-Directional Compact Piston Seal with Wear Rings</span><hr size="1" /><img src="../img/InfoPics/P56Info.jpg" width="175" height="150" class="tipimg">Squeeze-type piston seal with integrated L-shaped wear rings, for use on vertical or no drift piston.  Requires split piston design for smaller diameters for easier fitment. Compact design includes piston wear ring for small axial seal height reducing piston height, weight and cost.');

tips.P57 = new Array(25, -55, 450, '<span class="tip"><h2>P56</h2>Heavy-Duty Bi-Directional Compact Piston Seal with Wear Rings</span><hr size="1" /><img src="../img/InfoPics/P57Info.jpg" width="175" height="150" class="tipimg">Squeeze-type piston seal with integrated L-shaped wear rings, for use on vertical or no drift piston. Energizer allows fit on one-piece pistons. Compact design includes piston wear ring for small axial seal height reducing piston height, weight and cost.');

//Long-Life Piston Seals (0 – 5000psi*)
//Single-acting/unidirectional (capable of sealing pressure from one side)

tips.K1A = new Array(25, -55, 450, '<span class="tip"><h2>K1A</h2>Long-Life Light Duty Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K1AInfo.jpg" width="175" height="150" class="tipimg">Non-symmetrical unidirectional design provides longest service life in light duty, low-friction hydraulic and pneumatic applications. The thin, flexible lip design quickly responds to low pressure and provides smooth movement with less breakaway force. Beveled lip for maximum fluid sealing ability and a stretch fit ensures stability and a tight static seal on the piston.');

tips.K1B = new Array(25, -55, 450, '<span class="tip"><h2>K1B</h2>Hydraulic Piston Seal for Contamination Exclusion</span><hr size="1" /><img src="../img/InfoPics/K1BInfo.jpg" width="175" height="150" class="tipimg">Non-symmetrical seal design provides long service life in applications with worn rods and old equipment. Good contamination exclusion but reduced sealing performance due to knife-edge seal lip design.');

tips.VSK19 = new Array(25, -55, 450, '<span class="tip"><h2>VS-K19</h2>Spring-Loaded PTFE Piston Seal</span><hr size="1" /><img src="../img/InfoPics/VS-K19Info.jpg" width="175" height="150" class="tipimg">Designed for very low friction, extreme temperature service (cryogenic to high temperature) or chemically aggressive environments. Spring provides constant load to the beveled seal lip for best sealing performance under harsh conditions. A variety of different seal lip and spring configurations are available to meet specific sealing requirements. Go to Spring-Energized Teflon Seals for detailed information.');

tips.K82 = new Array(25, -55, 450, '<span class="tip"><h2>K82</h2>Low Friction Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K82Info.jpg" width="175" height="150" class="tipimg">O-ring energized low-friction unidirectional filled PTFE piston cap seal provides smooth movement, low friction sealing for low- to medium-duty service applications. Retro fits seals of similar design.');

//Double-acting/bidirectional (capable of sealing pressure from both sides)

tips.K8_ = new Array(25, -55, 450, '<span class="tip"><h2>K8</h2>Low Friction Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K8CInfo.jpg" width="175" height="150" class="tipimg">O-ring energized filled PTFE cap seal design provides smooth movement, low friction and wear in low- to medium-duty piston sealing applications. The small axial seal height reduces piston height, weight and cost. Commonly used in hydraulic presses, machine tools, injection molding machines and mobile hydraulics. Retro fits seals of similar design.');

tips.K81 = new Array(25, -55, 450, '<span class="tip"><h2>K81</h2>Low-Friction High-Pressure Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K81Info.jpg" width="175" height="150" class="tipimg">Rectangular energizer ensures a stable, positive seal and provides continuous contact along the sealing surface. The filled PTFE cap provides low friction and smooth operation of hydraulic cylinders over a wide range of medium- to high-pressure sealing applications. The small axial seal height reduces piston height, weight and cost. Retro fits seals of similar design.');

tips.K8E = new Array(25, -55, 450, '<span class="tip"><h2>K8E</h2>Low-Friction Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K8FInfo.jpg" width="175" height="150" class="tipimg">Cap seal providing low friction and long service life over a wide range of light- to medium-duty bi-directional service applications. The K8E retrofits into standard O-ring grooves designed for no backup, single or two backup rings without modification. The special designed filled PTFE cap is designed to resist extrusion and twisting of the O-ring under higher pressure.');

tips.K8F = new Array(25, -55, 450, '<span class="tip"><h2>K8F</h2>Low-Friction Fluid-Retaining Bi-Directional Hydraulic Piston Seal</span><hr size="1" /><img src="../img/InfoPics/K81aInfo.jpg" width="175" height="150" class="tipimg">Cap seal providing low friction and smooth operation over a wide range of medium- to heavy-duty hydraulic applications. The special designed filled PTFE cap retains a small amount of fluid in its reservoir between the two outer dynamic sealing points for greatly reduced friction. The small axial seal height reduces piston height, weight and cost.');



// Rotary Seals - Oil

tips.R1 = new Array(25, -55, 450, '<span class="tip"><h2>R1</h2>Spring-Loaded Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R1Info.jpg" width="175" height="150" class="tipimg">Spring-loaded single-lip oil seal for fitment in an open groove.  Non-metal reinforcement element ensures concentric fitment and increased corrosion resistance over metal reinforced seals. Stainless steel spring controls a constant radial seal force.');

tips.R1HP = new Array(25, -55, 450, '<span class="tip"><h2>R1HP</h2>High-Pressure Non-Metal Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R1HPInfo.jpg" width="175" height="150" class="tipimg">High-pressure single-lip oil seal for press-in fitment in an open groove with retaining device to hold seal in place under pressure.  Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over some metal reinforced seals.  Pressure up to 150psi (10bar) and max.10,000PV*.  Available quick in low volumes with no tooling charges.');

tips.R1HPL = new Array(25, -55, 450, '<span class="tip"><h2>R1HPL</h2>High-Pressure Non-Metal Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R1HPLInfo.jpg" width="175" height="150" class="tipimg">High-pressure single-lip oil seal for fitment in an open groove.  Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals. A non-abrasive high-strength precision manufactured anti-extrusion ring allows seal to withstand high pressures up to 300psi (20bar) and max.20,000PV*.  Available quick in low volumes with no tooling charges.');

tips.R2 = new Array(25, -55, 450, '<span class="tip"><h2>R2</h2>Spring-Loaded Double-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R2Info.jpg" width="175" height="150" class="tipimg">Spring-loaded double-lip oil seal for fitment in an open groove. Non-metal reinforcement element ensures concentric fitment and increased corrosion resistance over metal reinforced seals. Stainless steel spring controls a constant radial seal force. Secondary lip acts as a dust wiper for dirt exclusion and lube retainer.');

tips.R2HP = new Array(25, -55, 450, '<span class="tip"><h2>R2HP</h2>High-Pressure Non-Metal Double-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R2HPInfo.jpg" width="175" height="150" class="tipimg">High-pressure double-lip oil seal for fitment in an open groove.  Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals.  Secondary lip acts as a dust wiper for dirt exclusion and lube retainer. Pressure up to 150psi (10bar) and max.10,000PV*.  Available quick in low volumes with no tooling charges.');

tips.R9 = new Array(25, -55, 450, '<span class="tip"><h2>R9</h2>Solid Rubber Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R9Info.jpg" width="175" height="150" class="tipimg">Spring-loaded, single-lip oil seal without reinforcement element, non-metal rubber seal design allows seal to be fitted into a closed groove; alternatively, a retainer ring can be used to hold the seal in place.');

tips.R10 = new Array(25, -55, 450, '<span class="tip"><h2>R10</h2>Solid Rubber Double-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R10Info.jpg" width="175" height="150" class="tipimg">Spring-loaded, double-lip oil seal design without reinforcement element, non-metal rubber seal design allows seal to be fitted into a closed groove.  Alternatively, a retainer ring can be used to hold the seal in place. Secondary lip acts as a dust wiper for dirt exclusion and lube retainer.');


tips.R8 = new Array(25, -55, 450, '<span class="tip"><h2>R8</h2>Small Axial Height Bearing Grease Seal</span><hr size="1" /><img src="../img/InfoPics/R8Info.jpg" width="175" height="150" class="tipimg">Small axial height bearing grease seal. A non-metal seal, designed to control leakage in grease-packed bearings. Snap-in fitment for grooves.');

tips.R8C = new Array(25, -55, 450, '<span class="tip"><h2>R8C</h2>Bearing Grease Seal</span><hr size="1" /><img src="../img/InfoPics/R8CInfo.jpg" width="175" height="150" class="tipimg">Bearing grease seal.  A non-metal seal, designed to control leakage in grease-packed bearings. Non-metal reinforcement element for fitment in an open housing.');

tips.R1SL = new Array(25, -55, 450, '<span class="tip"><h2>R1SL</h2>MRO-Repair Single-Lip Oil Seal for Worn Shafts</span><hr size="1" /><img src="../img/InfoPics/R1SLInfo.jpg" width="175" height="150" class="tipimg">Repair single-lip oil seal for worn shafts and fitment in an open groove.  Non-metal reinforcement element ensures concentric fitment and increased corrosion resistance over metal reinforced seals.  Special lip design and contact area allows this seal to be fitted on most worn shafts where normally a speedi sleeve would be required.');

tips.R2SL = new Array(25, -55, 450, '<span class="tip"><h2>R2SL</h2>MRO-Repair Double-Lip Oil Seal for Worn Shafts</span><hr size="1" /><img src="../img/InfoPics/R2SLInfo.jpg" width="175" height="150" class="tipimg">Repair double-lip oil seal for worn shafts and fitment in an open groove.  Non-metal reinforcement element ensures concentric fitment and increased corrosion resistance over metal reinforced seals.  Special lip design and contact area allows this seal to be fitted on most worn shafts where normally a speedi sleeve would be required.  Secondary lip acts as a dust wiper for dirt exclusion and lube retainer.');


tips.R1HDC = new Array(25, -55, 450, '<span class="tip"><h2>R1HDC</h2>Heavy-Duty Non-Metal Spring-Loaded Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R1HDCInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded heavy-duty single-lip oil seal for fitment in an open groove.  Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals.  This seal is also available for exceptionally large cross sections.');

tips.R2HDC = new Array(25, -55, 450, '<span class="tip"><h2>R2HDC</h2>Heavy-Duty Non-Metal Spring-Loaded Double-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R2HDCInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded heavy-duty double-lip oil seal for fitment in an open groove.  Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals.  This seal is also available for exceptionally large cross sections.');

tips.R9HDS = new Array(25, -55, 450, '<span class="tip"><h2>R9HDS</h2>Non-Metal Spring-Loaded Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R9HDSInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded single-lip medium-duty oil seal for fitment in an open groove.  Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals.');

tips.R10HDS = new Array(25, -55, 450, '<span class="tip"><h2>R10HDS</h2>Non-Metal Spring-Loaded Double-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R10HDSInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded double-lip medium-duty oil seal for fitment in an open groove.  Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals.  Secondary lip acts as a dust wiper for dirt exclusion and lube retainer.');


tips.R25 = new Array(25, -55, 450, '<span class="tip"><h2>R25</h2>Non-Metal-Cased Single-Lip Grease Seal without Spring</span><hr size="1" /><img src="../img/InfoPics/R25Info.jpg" width="175" height="150" class="tipimg">Single-lip grease seal without spring. Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals.');

tips.R9HDL = new Array(25, -55, 450, '<span class="tip"><h2>R9HDL</h2>Non-Metal Dual-Lip Spring-Loaded Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R9HDLInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded dual-lip oil seal, designed to separate two fluids. Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals.');

tips.R230 = new Array(25, -55, 450, '<span class="tip"><h2>R230</h2>Solid Rubber Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/R230Info.jpg" width="175" height="150" class="tipimg">Single-lip general purpose rotary shaft seal with stainless steel finger spring and solid rubber or polymer construction without reinforcement element. Retrofits seals of similar design.');

tips.R530 = new Array(25, -55, 450, '<span class="tip"><h2>R530</h2>Non-Metal Solid Rubber Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/R530Info.jpg" width="175" height="150" class="tipimg">Single-lip heavy-duty rotary shaft seal with stainless steel V-spring. Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals. Retrofits seals of similar design.');


tips.A = new Array(25, -55, 450, '<span class="tip"><h2>A</h2>Spring-Loaded Single-Lip Oil Seal with Metal Reinforcement</span><hr size="1" /><img src="../img/InfoPics/AInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded single-lip oil seal with integrated metal reinforcement element.  Rubber coating of OD creates seal on the static housing bore.');

tips.AS = new Array(25, -55, 450, '<span class="tip"><h2>AS</h2>Spring-Loaded Double-Lip Oil Seal with Metal Reinforcement</span><hr size="1" /><img src="../img/InfoPics/ASInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded double-lip oil seal with integrated metal reinforcement element.  Secondary lip serves as dust lip for dirt exclusion.  Rubber coating of OD creates seal on the static housing bore.  Secondary lip acts as a dust wiper for dirt exclusion and lube retainer.');

tips.B = new Array(25, -55, 450, '<span class="tip"><h2>B</h2>Metal-Cased Spring-Loaded Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/BInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded single-lip oil seal, metal cased.  Most economical design for general purpose applications. Metal is exposed on OD of seal. Metal case is exposed to the elements.');

tips.BS = new Array(25, -55, 450, '<span class="tip"><h2>BS</h2>Metal-Cased Spring-Loaded Double-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/BSInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded double-lip oil seal, metal cased.  Most economical design for general purpose applications.  Secondary lip acts as a dust wiper for dirt exclusion and lube retainer. Metal case is exposed to the elements.');


tips.C = new Array(25, -55, 450, '<span class="tip"><h2>C</h2>Metal-Cased Spring-Loaded Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/CInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded single-lip oil seal, metal cased.  Inner metal casing provides greater strength as well as protection for the sealing lip.  This style should be used when shaft insertion is against the sealing lip. Metal case is exposed to the elements.');

tips.CS = new Array(25, -55, 450, '<span class="tip"><h2>CS</h2>Metal-Cased Spring-Loaded Double-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/CSInfo.jpg" width="175" height="150" class="tipimg">Spring-loaded double-lip oil seal, metal cased.  Inner metal casing provides greater strength as well as protection for the sealing lip.  This style should be used when shaft insertion is against the sealing lip.  Secondary lip acts as a dust wiper for dirt exclusion and lube retainer. Metal case is exposed to the elements.');

tips.AO = new Array(25, -55, 450, '<span class="tip"><h2>AO</h2>Grease Seal without Spring</span><hr size="1" /><img src="../img/InfoPics/AOInfo.jpg" width="175" height="150" class="tipimg">Springless grease seal with integrated metal reinforcement element.  Used to seal nonpressurized media like grease or very viscous fluids.  Rubber coating of OD creates seal on the static housing bore.');

tips.B0 = new Array(25, -55, 450, '<span class="tip"><h2>B0</h2>Metal-Cased Grease Seal</span><hr size="1" /><img src="../img/InfoPics/BOInfo.jpg" width="175" height="150" class="tipimg">Springless grease seal with integrated metal reinforcement element.  Used to seal nonpressurized media like grease or very viscous fluids.  Metal exposed on OD of seal.');

tips.RLS = new Array(25, -55, 450, '<span class="tip"><h2>RLS</h2>Heavy-Duty Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/RLSInfo.jpg" width="175" height="150" class="tipimg">Heavy-duty single-lip oil seal design with outer steel case for use in harsh and severe environments.  Higher pressure rating than traditional oil seals.  Can be retrofitted to replace standard seals.');



// Rotary Seals - Split

tips.R8S = new Array(25, -55, 450, '<span class="tip"><h2>R8S</h2>Split Small Axial Height Bearing Grease Seal</span><hr size="1" /><img src="../img/InfoPics/R8SInfo.jpg" width="175" height="150" class="tipimg">Split bearing grease seal.  Designed to control leakage in grease-packed bearings.  Split for ease of fitment in a closed housing.');

tips.R9S = new Array(25, -55, 450, '<span class="tip"><h2>R9S</h2>Split Solid Rubber Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R9Info.jpg" width="175" height="150" class="tipimg">Split, spring-loaded single-lip oil seal with a solid body design for easy on-site installation with a minimum of equipment dismantling.');

tips.R10S = new Array(25, -55, 450, '<span class="tip"><h2>R10S</h2>Split Solid Rubber Double-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R10SInfo.jpg" width="175" height="150" class="tipimg">Split, spring-loaded double-lip oil seal with a solid body design for easy on-site installation with a minimum of equipment dismantling.  Secondary lip acts as a dust wiper for dirt exclusion and lube retainer.');



// Rotary Seals - High Pres

tips.R1HC = new Array(25, -55, 450, '<span class="tip"><h2>R1HC</h2>Non-Metal High-Pressure Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R1HCInfo.jpg" width="175" height="150" class="tipimg">High-pressure single-lip oil seal for fitment in an open groove.  Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals.');

tips.R2HC = new Array(25, -55, 450, '<span class="tip"><h2>R2HC</h2>Non-Metal High-Pressure Double-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R2HCInfo.jpg" width="175" height="150" class="tipimg">High-pressure double-lip oil seal for fitment in an open groove.  Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals.  Secondary lip acts as a dust wiper for dirt exclusion and lube retainer.');

tips.R1H = new Array(25, -55, 450, '<span class="tip"><h2>R1H</h2>Non-Metal High-Pressure Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R1HInfo.jpg" width="175" height="150" class="tipimg">High-pressure single-lip oil seal for fitment in an open groove.  Non-metal reinforcement design ensures concentric fitment and increased corrosion resistance over metal reinforced seals. A non-abrasive high-strength precision manufactured anti-extrusion ring allows seal to withstand very high pressures.');

tips.AHP = new Array(25, -55, 450, '<span class="tip"><h2>AHP</h2>Metal Reinforced High-Pressure Single-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/AHPInfo.jpg" width="175" height="150" class="tipimg">High-pressure single-lip molded oil seal with integrated steel reinforcement element, special design to be fitted in housing with short axial length.  Rubber coating of OD creates seal on the static housing bore.');


tips.ASHP = new Array(25, -55, 450, '<span class="tip"><h2>ASHP</h2>Metal Reinforced High-Pressure Double-Lip Oil Seal</span><hr size="1" /><img src="../img/InfoPics/ASHPInfo.jpg" width="175" height="150" class="tipimg">High-pressure double-lip molded oil seal with integrated steel reinforcement element, special design to be fitted in housing with short axial length.  Rubber coating of OD creates seal on the static housing bore.  Secondary lip acts as a dust wiper for dirt exclusion and lube retainer.');

tips.R11 = new Array(25, -55, 450, '<span class="tip"><h2>R11</h2>Single-Lip PTFE/Teflon&reg; Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R11Info.jpg" width="175" height="150" class="tipimg">Single-lip PTFE/Teflon® oil seal.  Capable of handling extreme temperature, aggressive media, high surface speeds, and high pressures, and can even run dry.  Soft OD eliminates damage to housings manufactured from expensive metals. O-ring mounted on the OD for maximum static sealing.');

tips.R12 = new Array(25, -55, 450, '<span class="tip"><h2>R12</h2>Double-Lip PTFE/Teflon&reg; Oil Seal</span><hr size="1" /><img src="../img/InfoPics/R12Info.jpg" width="175" height="150" class="tipimg">Double-lip Teflon&reg; oil seal. Capable of handling extreme temperature, aggressive media, high surface speeds, and high pressures, and can even run dry.  Soft OD eliminates damage to housings manufactured from expensive metals. Secondary lip acts as a dust wiper for dirt exclusion and lube retainer. O-ring mounted on the OD for maximum static sealing.');

tips.RS19A = new Array(25, -55, 450, '<span class="tip"><h2>RS19A</h2>Flanged V-Spring-Loaded High-Pressure Low-Speed Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/RS19AInfo.jpg" width="175" height="150" class="tipimg">Flanged V-Spring-loaded high-pressure low-speed rotary shaft seal. Springs are made from 300 series stainless steel or other alloys, and, combined with the right seal material, provide low friction and corrosion resistance in severe service applications over a wide temperature range. Flanged arrangement ensures the seal cannot spin in the housing and forms a positive static seal area.');


tips.RS19B = new Array(25, -55, 450, '<span class="tip"><h2>RS19B</h2>Single-Lip V-Spring-Loaded Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/RS19BInfo.jpg" width="175" height="150" class="tipimg">Single-Lip V-Spring-loaded rotary shaft seal. The VS-S19B was designed to provide long service life and low friction for extreme service applications over a wide temperature range. Springs are made from 300 series stainless steel or other alloys. Seal design allows seal to be fitted lips first. Integrated O-ring on the OD serves as anti-rotation device and maximizes static sealing between the seal and the bore.');

tips.PS19A = new Array(25, -55, 450, '<span class="tip"><h2>PS19A</h2>Flanged V-Spring-Loaded High-Pressure Low-Speed Rotary Bore Seal</span><hr size="1" /><img src="../img/InfoPics/PS19AInfo.jpg" width="175" height="150" class="tipimg">Flanged V-Spring-loaded high-pressure low-speed rotary seal for spinning bore. Springs are made from 300 series stainless steel or other alloys, and, combined with the right seal material, provide low friction and corrosion resistance in severe service applications over a wide temperature range. Flanged arrangement ensures the seal cannot spin in the housing and forms a positive static seal area.');



// Rotary - High pref


// SB Series -----

//(1)

tips.SB10 = new Array(25, -55, 450, '<span class="tip"><h2>SB10</h2>Single-Lip PTFE/Teflon&reg;  Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB10Info.jpg" width="175" height="150" class="tipimg">Single-lip PTFE/Teflon&reg; rotary shaft seal. Capable of handling aggressive media, dry run, high surface speeds up to 5000fpm(25m/s)* and higher pressures up to 80psi(5bar)*.  Soft OD eliminates damage to housings. Integrated O-ring on the OD of the seal serves as anti-rotation device and maximizes static sealing between the seal and the bore.');

tips.SB10H = new Array(25, -55, 450, '<span class="tip"><h2>SB10H</h2>Extreme temperature High-Pressure Single-Lip PTFE/Teflon&reg; Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB10HInfo.jpg" width="175" height="150" class="tipimg">High-pressure single-lip PTFE/Teflon&reg; rotary shaft seal. Special seal design incorporates an anti-extrusion and support ring for the primary seal lip capable to handle high pressures up to 500psi(34bar)*, extreme temperatures, aggressive media, high surface speeds up to 3500fpm(18m/s), and can even run dry. Integrated O-ring on the OD of the seal serves as anti-rotation device and maximizes static sealing between the seal and the bore.');

tips.SB10HR = new Array(25, -55, 450, '<span class="tip"><h2>SB10HR</h2>Extreme temperature High-Pressure Single-Lip PTFE/Teflon&reg; Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB10HRInfo.jpg" width="175" height="150" class="tipimg">High-pressure single-lip PTFE/Teflon® rotary shaft seal. Special seal design incorporates an anti-extrusion and support ring for the primary seal lip to handle high pressures up to 500psi(34bar)* and adds dimensional stability for extreme temperatures, aggressive media, high surface speeds up to 5000fpm(25m/s), and can even run dry.  250,000PV* lubricated. Integrated O-ring on the OD of the seal serves as anti-rotation device and maximizes static sealing between the seal and the bore.');

tips.SB12 = new Array(25, -55, 450, '<span class="tip"><h2>SB12</h2>Single-Lip PTFE/Teflon&reg; Rotary Shaft Seal with Increased Lip Load</span><hr size="1" /><img src="../img/InfoPics/SB12Info.jpg" width="175" height="150" class="tipimg">Single-lip PTFE/Teflon&reg; rotary shaft seal with increased lip load offers improved gas sealing. Capable of handling extreme temperature, abrasive media, high surface speeds up to 4000fpm(20m/s), and pressures up to 80psi(5bar), and can even run dry. Soft seal OD eliminates damage to housings manufactured from expensive metals. Integrated O-ring on the OD of the seal serves as anti-rotation device and provides positive static sealing between the seal and the bore.');

tips.SB20 = new Array(25, -55, 450, '<span class="tip"><h2>SB20</h2>Low Friction Single-Lip PTFE/Teflon&reg; Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB20Info.jpg" width="175" height="150" class="tipimg">Lowest friction single-lip PTFE/Teflon&reg; rotary shaft seal. Low torque seal lip extends seal life but limits pressure capability. Capable of handling extreme temperature, pressures up to 30psi(2bar)*, aggressive media, high surface speeds up to 7000fpm(35m/s)*, and can even run dry. Soft seal OD eliminates damage to housings manufactured from expensive metals. Integrated O-ring on the OD of the seal serves as anti-rotation device and provides positive static sealing between the seal and the bore.');


//(2)

tips.SB30 = new Array(25, -55, 450, '<span class="tip"><h2>SB30</h2>Spring-Loaded Single-Lip PTFE/Teflon&reg; Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB30Info.jpg" width="175" height="150" class="tipimg">Single-lip PTFE/Teflon&reg; rotary shaft seal. Spring-loaded lip design allows the seal to accommodate low rpm shaft runout or misalignment up to 0.020"(0.5mm). Surface speed up to 2500fpm(15m/s)*. Capable of handling extreme temperature, aggressive media, higher surface speeds, pressures up to 80psi(5bar)*, and can even run dry. Soft seal OD eliminates damage to housings manufactured from expensive metals.  Integrated O-ring on the OD of the seal serves as anti-rotation device and provides positive static sealing between the seal and the bore.');

tips.SB11 = new Array(25, -55, 450, '<span class="tip"><h2>SB11</h2>Flanged Single-Lip PTFE/Teflon&reg; Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB11Info.jpg" width="175" height="150" class="tipimg">Flanged single-lip PTFE/Teflon&reg; rotary shaft seal.  Capable of handling extreme temperature, aggressive media, high surface speeds up to 5000fpm(25m/s)*, higher pressures up to 80psi(5.5bar)*, and can even run dry.  Soft OD eliminates damage to housings manufactured from expensive metals.  Flange mounted to stop potential rotating of the seal.');

tips.SB11B = new Array(25, -55, 450, '<span class="tip"><h2>SB11B</h2>Flanged Single-Lip PTFE/Teflon&reg; Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB11BInfo.jpg" width="175" height="150" class="tipimg">Flanged single-lip Teflon&reg; rotary shaft seal with integrated O-ring on the seal OD to assure positive static sealing between the seal and the bore. Capable of handling extreme temperature, aggressive media, high surface speeds up to 5000fpm(25m/s)*, higher pressures up to 80psi(5bar)*, and can even run dry.  80,000PV* lubricated. Soft seal OD eliminates damage to housings manufactured from expensive metals. Flange mounted to stop potential rotating of the seal.');

tips.SB40 = new Array(25, -55, 450, '<span class="tip"><h2>SB40</h2>Double-Lip PTFE/Teflon&reg; Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB40Info.jpg" width="175" height="150" class="tipimg">Double-lip PTFE/Teflon&reg; rotary shaft seal. Capable of handling extreme temperature, aggressive media, surface speeds up to 5000fpm(25m/s) (lubricated), pressures up to 150psi(10bar), and can even run dry. Soft seal OD eliminates damage to housings manufactured from expensive metals.  Double-lip design increases seal&acute;s pressure capability. Integrated O-ring on the OD of the seal serves as anti-rotation device and provides positive static sealing between the seal and the bore.');


//(3)

tips.SB41 = new Array(25, -55, 450, '<span class="tip"><h2>SB41</h2>Flanged Double-Lip PTFE/Teflon&reg; Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB41Info.jpg" width="175" height="150" class="tipimg">Flanged double-lip PTFE/Teflon&reg; rotary shaft seal. Capable of handling extreme temperature, aggressive media, surface speeds up to 5000fpm(25m/s) lubricated, pressures up to 150psi(10bar)*, and can even run dry. 200,000PV* lubricated. Soft seal OD eliminates damage to housings manufactured from expensive metals. Double-lip design increases seal&acute;s pressure capability. Flange mounted to stop potential rotating of the seal.');

tips.SB42B = new Array(25, -55, 450, '<span class="tip"><h2>SB42B</h2>Flanged Double-Lip PTFE/Teflon&reg; Rotary Shaft Seal with Integrated O-Ring</span><hr size="1" /><img src="../img/InfoPics/SB42BInfo.jpg" width="175" height="150" class="tipimg">Flanged double-lip PFTE/Teflon&reg; rotary shaft seal with integrated O-ring on the OD of the seal to provide positive static sealing between the seal and the bore. Double-lip design increases seal&acute;s pressure capability up to 150psi(10bar). Capable of handling extreme temperature, aggressive media, surface speeds up to 5000fpm(25m/s) lubricated, and can even run dry. 200,000PV lubricated. Soft seal OD eliminates damage to housings manufactured from expensive metals.  Flange mounted to stop potential rotating of the seal.');

tips.SB10R = new Array(25, -55, 450, '<span class="tip"><h2>SB10R</h2>Extreme Temperature Single-Lip PTFE/Teflon&reg;  Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB10RInfo.jpg" width="175" height="150" class="tipimg">Single-lip PTFE/Teflon&reg; rotary shaft seal. Integrated retaining element adds dimensional stability for handling extreme temperatures, aggressive media, high surface speeds up to 5000fpm(25m/s)*, higher pressures up to 80psi(5bar)*, and can even run dry. 80,000PV lubricated. Soft OD eliminates damage to housings manufactured from expensive metals.  Integrated O-ring on the OD of the seal serves as anti-rotation device and maximizes static sealing between the seal and the bore.');

tips.SB12R = new Array(25, -55, 450, '<span class="tip"><h2>SB12R</h2>Extreme Temperature Single-Lip PTFE/Teflon&reg; Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB12RInfo.jpg" width="175" height="150" class="tipimg">Single-lip PTFE/Teflon&reg; rotary shaft seal with increased lip load offers improved gas sealing. Integrated retaining element adds dimensional stability for handling extreme temperatures, abrasive media, high surface speeds up to 4000fpm(20m/s)*, and pressures up to 80psi(5bar), and can even run dry. 80,000PV lubricated. Soft seal OD eliminates damage to housings manufactured from expensive metals. Integrated O-ring on the OD of the seal serves as anti-rotation device and provides positive static sealing between the seal and the bore.');


//(4)

tips.SB20R = new Array(25, -55, 450, '<span class="tip"><h2>SB20R</h2>Extreme Temperature Low Friction Single-Lip PTFE/Teflon&reg; Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB20RInfo.jpg" width="175" height="150" class="tipimg">Low friction single-lip PTFE/Teflon&reg; rotary shaft seal. Low torque seal lip extends seal life but limits pressure capability. Integrated retainer element adds dimensional stability for extreme temperature, pressures up to 30psi(2bar)*, aggressive media, high surface speeds up to 8000fpm(40m/s)*, and can even run dry. 80,000PV lubricated. Soft seal OD eliminates damage to housings manufactured from expensive metals.   Integrated O-ring on the OD of the seal serves as anti-rotation device and provides positive static sealing between the seal and the bore.');

tips.SB30R = new Array(25, -55, 450, '<span class="tip"><h2>SB30R</h2>Extreme Temperature Spring-Loaded Single-Lip PTFE/Teflon&reg;Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/SB30RInfo.jpg" width="175" height="150" class="tipimg">Single-lip PTFE/Teflon&reg; rotary shaft seal. Spring-loaded lip design allows the seal to accommodate some shaft runout or misalignment up to 0.020"(0.5mm). Integrated retaining element adds dimensional stability for extreme temperatures, aggressive media, higher surface speeds up to 2500fpm(15m/s), pressures up to 80psi*, and can even run dry. 80,000PV lubricated. Soft seal OD eliminates damage to housings manufactured from expensive metals.  Integrated O-ring on the OD of the seal serves as anti-rotation device and provides positive static sealing between the seal and the bore.');


// VS Series -----

//(1)

tips.VSRS19B = new Array(25, -55, 450, '<span class="tip"><h2>VSRS19B</h2>High Pressure Single-Lip Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/VS-RS19BInfo.jpg" width="175" height="150" class="tipimg">Single-Lip V-Spring-loaded rotary shaft seal. The VS-S19B was designed to provide long service life and low friction for extreme service applications over a wide temperature range. Springs are made from 300 series stainless steel or other alloys. Seal design allows seal to be fitted lips first. Integrated O-ring on the OD serves as anti-rotation device and maximizes static sealing between the seal and the bore. Pressure up to 5,000psi (380bar)* at low speeds and 400,000PV*.');

tips.VSRS19B2 = new Array(25, -55, 450, '<span class="tip"><h2>VSRS19B2</h2>High Pressure Double-Lip Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/VS-RS19B2Info.jpg" width="175" height="150" class="tipimg">Double-Lip V-Spring-loaded rotary shaft seal. The VS-S19B2 was designed to provide long service life and low friction in extreme service applications over a wide temperature range. Springs are made from 300 series stainless steel or other alloys. Seal design allows seal to be fitted lips first. Integrated O-ring on the OD of the seal serves as anti-rotation device and maximizes static sealing between the seal and the bore. A secondary dust lip provides dirt exclusion and retains fluid. Pressure up to 5,000psi (380bar) at low speeds and 400,000PV*');

tips.VSPS19A = new Array(25, -55, 450, '<span class="tip"><h2>VSPS19A</h2>High-Pressure Low-Speed Flanged Rotary Bore Seal</span><hr size="1" /><img src="../img/InfoPics/VS-PS19AInfo.jpg" width="175" height="150" class="tipimg">Flanged V-Spring-loaded high-pressure low-speed rotary seal for spinning bore. Springs are made from 300 series stainless steel or other alloys, and, combined with the right seal material, provide low friction and corrosion resistance in severe service applications over a wide temperature range. Flanged arrangement ensures the seal cannot spin in the housing and forms a positive static seal area. Pressure up to 10,000psi (700bar)* at low speeds and 400,000PV*.');

tips.VSRS19A = new Array(25, -55, 450, '<span class="tip"><h2>RS19A</h2>High-Pressure Low-Speed Flanged Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/VS-RS19AInfo.jpg" width="175" height="150" class="tipimg">Flanged V-Spring-loaded high-pressure low-speed rotary shaft seal. Springs are made from 300 series stainless steel or other alloys, and, combined with the right seal material, provide low friction and corrosion resistance in severe service applications over a wide temperature range. Flanged arrangement ensures the seal cannot spin in the housing and forms a positive static seal area.  Pressure up to 10,000psi (700bar)* at low speeds and 400,000PV*.');


//(2) 

tips.VSS19HP = new Array(25, -55, 450, '<span class="tip"><h2>VSS19HP</h2>Ultra High Pressure Single-Lip Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/VS-S19HPInfo.jpg" width="175" height="150" class="tipimg">Ultra High Pressure V-Spring-loaded single-lip rotary shaft seal with integrated anit-extrusion ring for ultra high pressure spikes. Designed to provide long service life and low friction for extreme service applications over a wide temperature range. Springs are made from 300 series stainless steel or other alloys. Chamfered design allows seal to be fitted lips first. Pressure up to 20,000psi (1,380bar)* at low speeds and 400,000PV*.');


//RB Series -----

//(1)

tips.RBSC = new Array(25, -55, 450, '<span class="tip"><h2>RBSC</h2>Single-Lip High-Performance Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/RBSCInfo.jpg" width="175" height="150" class="tipimg">Single-lip high-performance rotary shaft seal.  AHP Seals&acute; special design incorporates the bonding of proprietary blends of PTFE/Teflon&reg; into the sealing lip. This ensures low friction and reduces both seal and shaft wear, resulting in increased seal life. Steel-reinforced construction and a rubber-covered seal OD provide improved static sealing between the housing bore and the seal. Max. pressure 30psi(2bar), 6000fpm(30m/s), 30,000PV*');

tips.RBTC = new Array(25, -55, 450, '<span class="tip"><h2>RBTC</h2>Double-Lip High-Performance Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/RBTCInfo.jpg" width="175" height="150" class="tipimg">Double-lip high-performance rotary shaft seal. AHP Seals&acute; special design incorporates the bonding of proprietary blends of PTFE/Teflon&reg; into the sealing lip. This ensures low friction and reduces both seal and shaft wear, resulting in increased seal life. Steel-reinforced construction and a rubber-covered seal OD provide improved static sealing between the housing bore and the seal. A secondary dust lip provides dirt exclusion and retains fluid. Max. pressure 30psi(2bar), 3000fpm(15m/s), 30,000PV');

tips.RBVC = new Array(25, -55, 450, '<span class="tip"><h2>RBVC</h2>High-Pressure Single-Lip Rotary Shaft Seal Without Spring</span><hr size="1" /><img src="../img/InfoPics/RBVCInfo.jpg" width="175" height="150" class="tipimg">High-pressure single-lip rotary shaft seal without spring. AHP Seals&acute; special design incorporates PTFE/Teflon&reg; molded onto the seal heel, supporting the seal lip under pressure creating an ultra-high-pressure low-speed seal. Steel reinforced construction and a rubber covered seal OD provide improved static sealing between the housing bore and the seal.');

tips.RBSCH = new Array(25, -55, 450, '<span class="tip"><h2>RBSCH</h2>High-Pressure Single-Lip High-Performance Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/RBSCHInfo.jpg" width="175" height="150" class="tipimg">High-pressure single-lip high-performance rotary shaft seal.  AHP Seals&acute; special design incorporates the bonding of proprietary blends of PTFE/Teflon® into the sealing lip. This ensures low friction and reduces both seal and shaft wear, resulting in increased seal life under high pressure. Steel reinforced construction and a rubber-covered seal OD provides improved static sealing between the housing bore and the seal. Max. pressure 150psi(10bar), 3000fpm(15m/s), 80,000PV*');

tips.RBTCH = new Array(25, -55, 450, '<span class="tip"><h2>RBTCH</h2>High-Pressure Double-Lip High-Performance Rotary Shaft Seal</span><hr size="1" /><img src="../img/InfoPics/RBVCInfo.jpg" width="175" height="150" class="tipimg">High-pressure double-lip high-performance rotary shaft seal.  AHP Seals&acute; special design incorporates the bonding of proprietary blends of PTFE/Teflon® into the sealing lip. This ensures low friction and reduces both seal and shaft wear, resulting in increased seal life. Steel reinforced construction and a rubber-covered seal OD provide improved static sealing between the housing bore and the seal. A secondary dust lip provides dirt exclusion and retains fluid. Max. pressure 150psi(10bar), 1800fpm(9m/s), 80,000PV*');


// MC Series -----

//(1)

tips.MC10 = new Array(25, -55, 450, '<span class="tip"><h2>MC10</h2>Metal-Cased PTFE/Teflon&reg; Single Lip Seal</span><hr size="1" /><img src="../img/InfoPics/MC10Info.jpg" width="175" height="150" class="tipimg">Metal-cased PTFE/Teflon® single lip rotary shaft seal without a spring. Pressures limit 250psi(17bar). Capable of sealing at higher speeds up to 10,000fpm(50m/s)*, PV 150,000 lubricated*, PV 35,000 unlubricated*.');

tips.MC20 = new Array(25, -55, 450, '<span class="tip"><h2>MC20</h2>Metal-Cased PTFE/Teflon&reg; Dual Lip Seal</span><hr size="1" /><img src="../img/InfoPics/MC20Info.jpg" width="175" height="150" class="tipimg">Redundant sealing for low leak systems, hydraulic motors, pumps, and transmissions.  Capable of sealing pressures up to 250psi(17bar)* in lubricating media. Capable of sealing at higher speeds up to 5000fpm(25m/s). Maximum PV 200,000* lubricated and 55,000 unlubricated.');

tips.MC21 = new Array(25, -55, 450, '<span class="tip"><h2>MC21</h2>Metal-Cased PTFE/Teflon® Dual Lip Seal</span><hr size="1" /><img src="../img/InfoPics/MC21Info.jpg" width="175" height="150" class="tipimg">Metal-cased dual-lip PTFE/Teflon® seal.  Capable of sealing at higher speeds up to 5000fpm(25m/s)*, both lubricated and unlubricated. Pressure up to 125psi(9bar), PV 150,000 lubricated*.  Opposed secondary lip acts as dirt exclusion and lube retainer.');

tips.MC31 = new Array(25, -55, 450, '<span class="tip"><h2>MC31</h2>Metal-Cased PTFE/Teflon&reg; Multiple Lip Seal</span><hr size="1" /><img src="../img/InfoPics/MC31Info.jpg" width="175" height="150" class="tipimg">Metal-cased high pressure multiple-lip PTFE/Teflon® rotary shaft seal for hydraulic motors, pumps and transmissions, and high pressure rotary equipment.  Capable of sealing at higher speeds up to 5000fpm(25m/s), both lubricated and unlubricated.  Up to 250psi(17bar)* in lubricating media. Maximum PV 200,000* lubricated and 55,000 unlubricated. Opposed secondary lip acts as a dust wiper for dirt exclusion and lube retainer.');


//(2) Series -----

tips.MC20TC = new Array(25, -55, 450, '<span class="tip"><h2>MC20TC</h2>Metal-Cased High Pressure PTFE/Teflon&reg; Dual Lip Seal</span><hr size="1" /><img src="../img/InfoPics/MC20TCInfo.jpg" width="175" height="150" class="tipimg">Metal-cased high-pressure PTFE/Teflon® rotary shaft seal for hydrostatic transmissions and high pressure rotary equipment. Special seal design incorporates an anti-extrusion and support ring for the primary seal lip capable to handle high pressures up to 500 psi*.  Maximum PV 300,000* lubricated and 55,000 unlubricated. Capable of sealing at higher speeds up to 3,500fpm(18m/s).*, both lubricated and unlubricated.');


// Wear Ring

tips.F1 = new Array(25, -55, 450, '<span class="tip"><h2>F1</h2>Piston or Rod Wear Ring</span><hr size="1" /><img src="../img/InfoPics/F1Info.jpg" width="175" height="150" class="tipimg">Standard wear ring  for rod or piston applications, designed to eliminate metal to metal contact.');

tips.F3 = new Array(25, -55, 450, '<span class="tip"><h2>F3</h2>L-Shaped Piston Wear Ring</span><hr size="1" /><img src="../img/InfoPics/F3Info.jpg" width="175" height="150" class="tipimg">L-shaped wear ring that is trapped in groove in gland. Typically used in combination with a piston seal.');

tips.F4 = new Array(25, -55, 450, '<span class="tip"><h2>F4</h2>L-Shaped Rod Wear Ring</span><hr size="1" /><img src="../img/InfoPics/F4Info.jpg" width="175" height="150" class="tipimg">L-shaped wear ring that is trapped in groove in gland. Typically used in combination with a rod seal.');

tips.F5 = new Array(25, -55, 450, '<span class="tip"><h2>F5</h2>T-Shaped Piston Wear Ring</span><hr size="1" /><img src="../img/InfoPics/F5Info.jpg" width="175" height="150" class="tipimg">T-shaped wear ring that snaps into piston groove for easy piston insertion into bore. Retrofits wear rings of similar design.');

tips.F6 = new Array(25, -55, 450, '<span class="tip"><h2>F6</h2>T-Shaped Rod Wear Ring</span><hr size="1" /><img src="../img/InfoPics/F6Info.jpg" width="175" height="150" class="tipimg">T-shaped wear ring that snaps into gland groove for easy rod insertion into cylinder. Retrofits wear rings of similar design.');

tips.F7 = new Array(25, -55, 450, '<span class="tip"><h2>F7</h2>Grooved Piston Wear Ring</span><hr size="1" /><img src="../img/InfoPics/F7Info.jpg" width="175" height="150" class="tipimg">Grooved wear ring that snaps onto the piston. Retrofits wear rings of similar design.');

tips.F8 = new Array(25, -55, 450, '<span class="tip"><h2>F8</h2>Grooved Rod Wear Ring</span><hr size="1" /><img src="../img/InfoPics/F8Info.jpg" width="175" height="150" class="tipimg">Grooved wear ring that snaps into the gland. Retrofits wear rings of similar design.');


// Rotary - Swivel

tips.R3 = new Array(25, -55, 450, '<span class="tip"><h2>R3</h2>Ultra High-Pressure Internal Swivel Seal</span><hr size="1" /><img src="../img/InfoPics/R3Info.jpg" width="175" height="150" class="tipimg">Ultra High-pressure internal swivel seal. The center piece is made out of an high-performance elastomer supported by two modular backup rings provides excellent sealability on high-pressure slow-speed hydraulic swivels and rotary distributors.');

tips.R67 = new Array(25, -55, 450, '<span class="tip"><h2>R67</h2>Low-Friction External Swivel Seal.</span><hr size="1" /><img src="../img/InfoPics/R67Info.jpg" width="175" height="150" class="tipimg">Low-friction medium pressure external swivel seal. The seal design comprised of an o-ring energizing a wear-resistant PTFE/Teflon&reg; cap. Special grooves on the dynamic sealing surface provide lubrication while the contoured inside diameter of the cap fits with the o-ring to eliminate spinning between the cap and the o-ring. Often used on rotary couplings.');

tips.R67R = new Array(25, -55, 450, '<span class="tip"><h2>R67</h2>Small Cross-Section Low-Friction External Swivel Seal</span><hr size="1" /><img src="../img/InfoPics/R67RInfo.jpg" width="175" height="150" class="tipimg">Small cross-section low-friction external swivel seal, designed to minimize system friction and give a positive seal on the bore.  Used where radial grooves must be kept as small as possible.');

tips.R68 = new Array(25, -55, 450, '<span class="tip"><h2>R68</h2>Low-Friction Internal Swivel Seal.</span><hr size="1" /><img src="../img/InfoPics/R68Info.jpg" width="175" height="150" class="tipimg">Low-friction medium pressure internal swivel seal. The seal design comprised of an o-ring energizing a wear-resistant PTFE/Teflon&reg; cap. Special grooves on the dynamic sealing surface provide lubrication while the contoured outside diameter of the cap fits with the o-ring to eliminate spinning between the cap and the o-ring. Often used on rotary couplings.');

tips.R68R = new Array(25, -55, 450, '<span class="tip"><h2>R68R</h2>Small Cross-Section Low-Friction Internal Swivel Seal</span><hr size="1" /><img src="../img/InfoPics/R68RInfo.jpg" width="175" height="150" class="tipimg">Small cross-section low-friction internal swivel seal, designed to minimize system friction and give a positive seal on the rod.  Used where radial grooves must be kept as small as possible.');

tips.R68A = new Array(25, -55, 450, '<span class="tip"><h2>R68A</h2>Small Cross-Section Low-Friction Internal Swivel Seal</span><hr size="1" /><img src="../img/InfoPics/R86AInfo.jpg" width="175" height="150" class="tipimg">Small cross-section low-friction internal swivel seal, designed to minimize system friction and give a positive seal on the rod.  Used where radial grooves must be kept as small as possible.');


tips.R67A = new Array(25, -55, 450, '<span class="tip"><h2>R67A</h2>Small Cross-Section Low-Friction External Swivel Seal</span><hr size="1" /><img src="../img/InfoPics/R67AInfo.jpg" width="175" height="150" class="tipimg">Small cross-section low-friction external swivel seal, designed to minimize system friction and give a positive seal on the bore.  Used where radial grooves must be kept as small as possible.');

tips.R4 = new Array(25, -55, 450, '<span class="tip"><h2>R4</h2>High-Pressure Low-Speed Internal Rotary Seal</span><hr size="1" /><img src="../img/InfoPics/R4Info.jpg" width="175" height="150" class="tipimg">High-pressure low-speed internal rotary seal for quarter- and half-turn swivels normally seen in robotics and manipulators, and sealing applications with tight running clearances. The seal is made of a high-performance elastomer. The specially designed dynamic sealing surface provides lubrication pockets to reduce friction and wear. Economic one piece design.');

tips.R5 = new Array(25, -55, 450, '<span class="tip"><h2>R5</h2>High-Pressure Low-Speed External Rotary Seal</span><hr size="1" /><img src="../img/InfoPics/R5Info.jpg" width="175" height="150" class="tipimg">High-pressure low-speed external rotary seal for quarter- and half-turn swivels normally seen in robotics and manipulators, and sealing applications with tight running clearances. The seal is made of an high-performance elastomer, the special designed dynamic sealing surface provides lubrication pockets to reduce friction and wear. Economic one-piece design.');

tips.R6VA = new Array(25, -55, 450, '<span class="tip"><h2>R6VA</h2>Light Duty V-Ring</span><hr size="1" /><img src="../img/InfoPics/R6VAInfo.jpg" width="175" height="150" class="tipimg">V-ring. Light duty dirt-exclusion seal that is stretched onto shaft and seals against the bearing race, housing, or even the heel of the pressure seal. Spins with the shaft and uses centrifugal force to create exclusion force.');

tips.R7VS = new Array(25, -55, 450, '<span class="tip"><h2>R7VS</h2>Heavy Duty V-Ring</span><hr size="1" /><img src="../img/InfoPics/R7VSInfo.jpg" width="175" height="150" class="tipimg">V-ring. Heavy duty dirt-exclusion seal that is stretched onto shaft and seals against the bearing race, housing, or even the heel of the pressure seal. Spins with the shaft and uses centrifugal force to create exclusion force. Wider and tapered body provides greater clamping force for the v-ring.');

tips.R6VE = new Array(25, -55, 450, '<span class="tip"><h2>R6VE</h2>Split V-Ring for Easy Installation</span><hr size="1" /><img src="../img/InfoPics/R6VEInfo.jpg" width="175" height="150" class="tipimg">V-ring. Split version of dirt-exclusion seal that is stretched onto shaft and seals against the bearing race, and can be fitted in situations without disassembly of the equipment.  Seal spins with the shaft and uses centrifugal force to create exclusion force.  Needs a clamping device to secure on the rotating shaft.');

tips.R30R = new Array(25, -55, 450, '<span class="tip"><h2>R30R</h2>High-Pressure Low Speed Internal Rotary/Swivel Sea</span><hr size="1" /><img src="../img/InfoPics/R30RInfo.jpg" width="175" height="150" class="tipimg">High-pressure, low-speed internal rotary/swivel seal made of a high-performance elastomer designed to separate two different media. Easy to fit in multiple-port units.');

tips.R35 = new Array(25, -55, 450, '<span class="tip"><h2>R35</h2>High-Pressure Low-Speed External Rotary/Swivel Seal</span><hr size="1" /><img src="../img/InfoPics/K35Info.jpg" width="175" height="150" class="tipimg">High-pressure, low-speed external rotary/swivel seal made of a high-performance elastomer designed to separate two different media. Easy to fit in multiple-port units.');



// Labyrinth Seals

tips.L1 = new Array(25, -55, 450, '<span class="tip"><h2>L1</h2>Labyrinth Type Seal</span><hr size="1" /><img src="../img/InfoPics/L1Info.jpg" width="175" height="150" class="tipimg">Standard, economical labyrinth type seal for either inner ring or outer ring rotation for light splashing of liquids and, or fine to coarse granular contamination exclusion.');

tips.L1IR = new Array(25, -55, 450, '<span class="tip"><h2>L1-IR</h2>Labyrinth Type Seal for inner ring rotation</span><hr size="1" /><img src="../img/InfoPics/L1-IRInfo.jpg" width="175" height="150" class="tipimg">Labyrinth type seal for where shaft rotates. Design incorporates a drain port on the outer ring for heavy splashing of liquids and, or fine to coarse granular contamination exclusion.');

tips.L1OR = new Array(25, -55, 450, '<span class="tip"><h2>L1-OR</h2>Labyrinth Type Seal for outer ring rotation</span><hr size="1" /><img src="../img/InfoPics/L1-ORInfo.jpg" width="175" height="150" class="tipimg">Labyrinth type seal where the outer housing  rotates and shaft is stationary. Design incorporates a drain port on the inner ring for heavy splashing of liquids and, or fine to coarse granular contamination exclusion.');

tips.L2 = new Array(25, -55, 450, '<span class="tip"><h2>L2</h2>Labyrinth Type Seal with o-rings</span><hr size="1" /><img src="../img/InfoPics/L2Info.jpg" width="175" height="150" class="tipimg">Labyrinth type seal for light splashing of liquids and, or fine to coarse granular contamination exclusion with o-rings for better  seal retention and improved static sealing performance, can also be made available with drain ports.');



		

// Buffer Seals

tips.F2B = new Array(25, -55, 450, '<span class="tip"><h2>F2B</h2>Heavy Duty Low Cost Rod Buffer Seal</span><hr size="1" /><img src="../img/InfoPics/F2BInfo.jpg" width="175" height="150" class="tipimg">Basic low cost design to protect U-ring rod seals from pressure spikes. Small axial height means a small increase in gland height.');
					

// Wipers
			
tips.A1 = new Array(25, -55, 450, '<span class="tip"><h2>A1</h2>Stepped Snap-In Hydraulic Rod Wiper Beveled Lip</span><hr size="1" /><img src="../img/InfoPics/A1Info.jpg" width="175" height="150" class="tipimg">Stepped design provides an accurate closure for highly contaminated environments. Interference fit with the housing offers a better static seal on the OD. Beveled wiping lip retains microscopically thin fluid film on the rod thereby extending seal life.');

tips.A1A = new Array(25, -55, 450, '<span class="tip"><h2>A1A</h2>Stepped Snap-In Hydraulic Wiper with Stabilizing Blowout Prevention</span><hr size="1" /><img src="../img/InfoPics/A1AInfo.jpg" width="175" height="150" class="tipimg">Stepped design provides an accurate closure through interference fit with the housing for a static seal on the OD. Backpressure relief grooves on the heel to reduce the risk of wipers being “blown out” by a pressure trap between the rod seal and the wiper. Beveled wiping lip retains microscopically thin fluid film on the rod, thereby extending seal life.');

tips.A2 = new Array(25, -55, 450, '<span class="tip"><h2>A2</h2>Snap-In Hydraulic Rod Wiper</span><hr size="1" /><img src="../img/InfoPics/A2Info.jpg" width="175" height="150" class="tipimg">Simple and economic wiper design. Beveled wiping lip retains microscopically thin fluid film on the rod, thereby extending seal life.');

tips.A2A = new Array(25, -55, 450, '<span class="tip"><h2>A2A</h2>Snap-In Wiper with Stabilizing Blowout Prevention</span><hr size="1" /><img src="../img/InfoPics/A2AInfo.jpg" width="175" height="150" class="tipimg">Hydraulic rod wiper designed with backpressure relief, reduces the risk of wipers being blown out by a pressure trap between the rod seal and the wiper, while being stabilized in the gland. Beveled wiping lip retains microscopically thin fluid film on the rod, thereby extending seal life.');

tips.A2B = new Array(25, -55, 450, '<span class="tip"><h2>A2B</h2>Low-Friction Snap-In Wiper for Small Diameters</span><hr size="1" /><img src="../img/InfoPics/A2BInfo.jpg" width="175" height="150" class="tipimg">Integrated relieve groove design provides a low-friction wiping lip for small diameters for hydraulic or pneumatic applications. Beveled wiping lip retains microscopically thin fluid film on the rod, thereby extending seal life.');

tips.A2C = new Array(25, -55, 450, '<span class="tip"><h2>A2C</h2>Snap-In Hydraulic Rod Wiper with OD Seal Lip</span><hr size="1" /><img src="../img/InfoPics/A2CInfo.jpg" width="175" height="150" class="tipimg">Integrated seal lip on the OD for improved dirt and moisture exclusion mainly used on vertical cylinders. Straight wiping lip for aggressive dirt exclusion without scratching the rod.');

tips.A3 = new Array(25, -55, 450, '<span class="tip"><h2>A3</h2>Press-In Hydraulic Rod Wiper Beveled Lip</span><hr size="1" /><img src="../img/InfoPics/A3Info.jpg" width="175" height="150" class="tipimg">Press-in design provides for the best OD sealing and reduced manufacturing cost to machine the open gland design. Outer can is made of engineering plastic or metal for press-fit installation. Beveled wiping lip retains microscopically thin fluid film on the rod, thereby extending seal life.');

tips.A3S = new Array(25, -55, 450, '<span class="tip"><h2>A3S</h2>Press-In Hydraulic Rod Wiper Straight Lip</span><hr size="1" /><img src="../img/InfoPics/A3SInfo.jpg" width="175" height="150" class="tipimg">Press-in design provides for the best OD sealing and reduced manufacturing cost to machine the open gland design. Outer can is made of engineering plastic or metal for press-fit installation. Straight wiping lip for aggressive dirt exclusion without scratching the rod.');

tips.A4 = new Array(25, -55, 450, '<span class="tip"><h2>A4</h2>Stepped Snap-In Pneumatic Rod Wiper Rounded Lip</span><hr size="1" /><img src="../img/InfoPics/A4Info.jpg" width="175" height="150" class="tipimg">Design provides an accurate closure trough interference fit with the housing for a static seal on the OD. Round wiping lip retains microscopically thin oil or grease film on the rod, thereby extending seal and bearing life.');

tips.A5 = new Array(25, -55, 450, '<span class="tip"><h2>A5</h2>Snap-In Pneumatic Rod Wiper Rounded Lip</span><hr size="1" /><img src="../img/InfoPics/A5Info.jpg" width="175" height="150" class="tipimg">Simple and economic wiper design. Round wiping lip retains microscopically thin oil or grease film on the rod, thereby extending seal and bearing life.');

tips.A6 = new Array(25, -55, 450, '<span class="tip"><h2>A6</h2>Press-In Pneumatic Rod Wiper Rounded LiP</span><hr size="1" /><img src="../img/InfoPics/A6Info.jpg" width="175" height="150" class="tipimg">Press-in design provides for the best OD sealing and reduced manufacturing cost to machine the open gland design. Outer can is made of engineering plastic or metal for press-fit installation. Round wiping lip retains microscopically thin oil or grease film on the rod, thereby extending seal life.');

tips.A7 = new Array(25, -55, 450, '<span class="tip"><h2>A7</h2>Snap-In Replacement Design Wiper</span><hr size="1" /><img src="../img/InfoPics/A7Info.jpg" width="175" height="150" class="tipimg">Replacement wiper for some existing applications. Not recommended for new design.');

tips.A8 = new Array(25, -55, 450, '<span class="tip"><h2>A8</h2>Hat Wiper for Hydraulic Rod</span><hr size="1" /><img src="../img/InfoPics/A8Info.jpg" width="175" height="150" class="tipimg">Traditional trapped wiper design used in conjunction with hat packing in older cylinder designs.');

tips.A8H = new Array(25, -55, 450, '<span class="tip"><h2>A8H</h2>Hat Wiper for Hydraulic Rod</span><hr size="1" /><img src="../img/InfoPics/A8HInfo.jpg" width="175" height="150" class="tipimg">Traditional trapped wiper design used in conjunction with hat packing in older cylinder designs.');

tips.A9 = new Array(25, -55, 450, '<span class="tip"><h2>A9</h2>Snap-In Straight-Lip Hydraulic Wiper</span><hr size="1" /><img src="../img/InfoPics/A9Info.jpg" width="175" height="150" class="tipimg">Design provides interference fit with the housing for a static seal on the OD. Straight wiping lip for aggressive dirt exclusion without scratching the rod. Simple, effective and economic wiper design.');

tips.A11 = new Array(25, -55, 450, '<span class="tip"><h2>A11</h2>Double-Lip Snap-In Straight-Lip Hydraulic Wiper</span><hr size="1" /><img src="../img/InfoPics/A11Info.jpg" width="175" height="150" class="tipimg">Double-lip or redundant wiper lips are one of the most effective ways to improve a systems sealing performance. Design provides interference fit with the housing for a better static seal on the OD. Straight wiping lip for aggressive dirt exclusion without scratching the rod. Integrated U-ring with a beveled seal lip facing the opposite side collects any leakage from the rod seal, providing for the driest rod sealing available. To prevent a pressure trap, it is important to use one of our long-life rod seal that allows pressure relief; otherwise, a pressure relief port must be present between the rod seal and wiper.');

tips.A15 = new Array(25, -55, 450, '<span class="tip"><h2>A15</h2>Stepped Double-Lip Snap-In Hydraulic Wiper</span><hr size="1" /><img src="../img/InfoPics/A15Info.jpg" width="175" height="150" class="tipimg">Double-lip or redundant wiper lips are one of the most effective ways to improve a systems sealing performance. Stepped design provides an accurate closure through interference fit with the housing for a static seal on the OD. Straight wiping lip for aggressive dirt exclusion without scratching the rod. Integrated U-ring with a beveled seal lip facing the opposite side collects any leakage from the rod seal, providing for the driest rod sealing available. To prevent a pressure trap, it is important to use one of our long-life rod seal that allows pressure relief; otherwise, a pressure relief port must be present between the rod seal and wiper.');

tips.A25 = new Array(25, -55, 450, '<span class="tip"><h2>A25</h2>Ultra Heavy-Duty Hydraulic Press-In Wiper Beveled Lip</span><hr size="1" /><img src="../img/InfoPics/A25Info.jpg" width="175" height="150" class="tipimg">Press-in design provides for the best OD sealing and reduced manufacturing cost to machine the open gland design. Outer can is made of engineering plastic or metal for press-fit installation. Recessed beveled wiping lip provides better protection from debris and retains microscopically thin fluid film on the rod, thereby extending seal life.');

tips.A25S = new Array(25, -55, 450, '<span class="tip"><h2>A25S</h2>Ultra Heavy-Duty Hydraulic Press-In Wiper Straight Lip</span><hr size="1" /><img src="../img/InfoPics/A25SInfo.jpg" width="175" height="150" class="tipimg">Press-in design provides for the best OD sealing and reduced manufacturing cost to machine the open gland design. Outer can is made of engineering plastic or metal for press-fit installation. Straight, recessed wiping lip provides best protection from damaging debris while providing the most aggressive dirt exclusion without scratching the rod.');

tips.A11C = new Array(25, -55, 450, '<span class="tip"><h2>A11C</h2>Double-Lip Heavy-Duty Hydraulic Press-In Wiper</span><hr size="1" /><img src="../img/InfoPics/A11CInfo.jpg" width="175" height="150" class="tipimg">Redundant or multiple wiper lips are one of the most effective ways to improve a systems sealing performance. Press-in design provides for the best OD sealing and reduced manufacturing cost to machine the open gland design. Outer can is made of engineering plastic or metal for press-fit installation. Straight wiping lip for aggressive dirt exclusion without scratching the rod. Integrated U-ring with a beveled seal lip facing the opposite side collects any leakage from the rod seal, providing for the driest rod sealing available. To prevent a pressure trap, it is important to use one of our long-life rod seal that allows pressure relief; otherwise, a pressure relief port must be present between the rod seal and wiper.');

tips.A26 = new Array(25, -55, 450, '<span class="tip"><h2>A26</h2>Snap-In U-Wiper for Hydraulic Beveled Lip</span><hr size="1" /><img src="../img/InfoPics/A26Info.jpg" width="175" height="150" class="tipimg">Design provides interference fit with the housing for a better static seal on the OD. Recessed beveled wiping lip provides better protection from debris and retains microscopic thin fluid film on the rod to extend seal life during return stroke. Simple, effective and economic wiper design.');

tips.A26S = new Array(25, -55, 450, '<span class="tip"><h2>A26S</h2>Snap-In Hydraulic U-Wiper Straight Lip</span><hr size="1" /><img src="../img/InfoPics/A26SInfo.jpg" width="175" height="150" class="tipimg">Design provides interference fit with the housing for a better static seal on the OD. Recessed straight wiping lip provides better protection from debris and aggressive dirt exclusion without scratching the rod. Simple, effective and economic wiper design.');

tips.W51 = new Array(25, -55, 450, '<span class="tip"><h2>W51</h2>Premium Heavy-Duty Snap-In Hydraulic Wiper with OD Dirt Exclusion</span><hr size="1" /><img src="../img/InfoPics/W51Info.jpg" width="175" height="150" class="tipimg">Aggressive designed wiper prevents the ingress of dirt or moisture through the OD, thus eliminating gland corrosion. Straight, heavy loaded wiping lip for aggressive dirt exclusion without scratching the rod. Best design for vertically operating cylinders in heavy contaminated environment.');

tips.W51L = new Array(25, -55, 450, '<span class="tip"><h2>W51L</h2>Premium Low-Friction Heavy-Duty Snap-In with OD Dirt Exclusion</span><hr size="1" /><img src="../img/InfoPics/W51LInfo.jpg" width="175" height="150" class="tipimg">Aggressive designed wiper prevents the ingress of dirt or moisture through the OD, thus eliminating gland corrosion. Straight, low-friction wiping lip for aggressive dirt exclusion without scratching the rod. Used for both hydraulic and pneumatic systems with oil mist pressurized air. Best design for vertically operating cylinders in heavy contaminated environment.');

tips.A30 = new Array(25, -55, 450, '<span class="tip"><h2>A30</h2>External Snap-In Wiper</span><hr size="1" /><img src="../img/InfoPics/A30Info.jpg" width="175" height="150" class="tipimg">Designed for external bore wiping for special applications.');

tips.A31 = new Array(25, -55, 450, '<span class="tip"><h2>A31</h2>Heavy-Duty Snap-In Rod Scraper</span><hr size="1" /><img src="../img/InfoPics/A31Info.jpg" width="175" height="150" class="tipimg">Heavy-duty wiper to scrape off built-up debris. Typically made out of a rigid engineering plastic material. Straight scraping lip for aggressive dirt exclusion. Retro fits scrapers of similar design.');

tips.A13 = new Array(25, -55, 450, '<span class="tip"><h2>A13</h2>Snap-In Hydraulic Rod Debris Scraper</span><hr size="1" /><img src="../img/InfoPics/A13Info.jpg" width="175" height="150" class="tipimg">Made out of a rigid engineering plastic material fitted outboard of the gland to scrape off built-up debris including ice. Small height to fit applications with limited space.');

tips.A20 = new Array(25, -55, 450, '<span class="tip"><h2>A20</h2>Low-Friction Wiper O-Ring Energized </span><hr size="1" /><img src="../img/InfoPics/A20Info.jpg" width="175" height="150" class="tipimg">Low friction design for nonabrasive environments. Recessed straight wiping lip provides better protection from debris and aggressive dirt exclusion without scratching the rod. Retro fits wipers of similar design.');

tips.A21 = new Array(25, -55, 450, '<span class="tip"><h2>A21</h2>Low-Friction Double-Acting O-Ring Energized Wiper</span><hr size="1" /><img src="../img/InfoPics/A21Info.jpg" width="175" height="150" class="tipimg">Heavy duty wiper with redundant seal design. Redundant or multiple wiper lips are one of the most effective ways to improve a systems sealing performance. Recessed straight wiping edge provides better protection from debris and aggressive dirt exclusion without scratching the rod. Secondary beveled seal lip facing the opposite side collects any leakage from the rod seal, providing for the driest rod sealing available. To prevent a pressure trap, it is important to use one of our long-life rod seals or S92 buffer seals that allows pressure relief; otherwise, a pressure relief port must be present between the rod seal and wiper. Retro fits wipers of similar design.');

tips.A21 = new Array(25, -55, 450, '<span class="tip"><h2>A21</h2>Low-Friction Double-Acting O-Ring Energized Wiper</span><hr size="1" /><img src="../img/InfoPics/A21Info.jpg" width="175" height="150" class="tipimg">Heavy duty wiper with redundant seal design. Redundant or multiple wiper lips are one of the most effective ways to improve a systems sealing performance. Recessed straight wiping edge provides better protection from debris and aggressive dirt exclusion without scratching the rod. Secondary beveled seal lip facing the opposite side collects any leakage from the rod seal, providing for the driest rod sealing available. To prevent a pressure trap, it is important to use one of our long-life rod seals or S92 buffer seals that allows pressure relief; otherwise, a pressure relief port must be present between the rod seal and wiper. Retro fits wipers of similar design.');

tips.A22 = new Array(25, -55, 450, '<span class="tip"><h2>A22</h2>Low-Friction Light-Duty Double-Acting O-Ring Energized Wiper</span><hr size="1" /><img src="../img/InfoPics/A22Info.jpg" width="175" height="150" class="tipimg">Light-service wiper with redundant seal design. Recessed straight wiping edge provides better protection from debris and aggressive dirt exclusion without scratching the rod. Secondary beveled seal lip facing the opposite side collects any leakage from the rod seal, providing for the driest rod sealing available. To prevent a pressure trap, it is important to use one of our long-life rod seals or S92 buffer seals that allows pressure relief; otherwise, a pressure relief port must be present between the rod seal and wiper. Retro fits wipers of similar design.');

tips.A23 = new Array(25, -55, 450, '<span class="tip"><h2>A23</h2>Heavy-Duty Double-Acting Energized Scraper</span><hr size="1" /><img src="../img/InfoPics/A23Info.jpg" width="175" height="150" class="tipimg">Heavy duty wiper with redundant seal design. Redundant or multiple wiper lips are one of the most effective ways to improve a systems sealing performance. Recessed straight wiping edge provides better protection from debris and aggressive dirt exclusion without scratching the rod. Secondary beveled seal lip facing the opposite side collects any leakage from the rod seal, providing for the driest rod sealing available. To prevent a pressure trap, it is important to use one of our long-life rod seals or S92 buffer seals that allows pressure relief; otherwise, a pressure relief port must be present between the rod seal and wiper. Retro fits wipers of similar design.');

tips.A21E2 = new Array(25, -55, 450, '<span class="tip"><h2>A21E2</h2>Heavy-Duty Double-Acting Energized Scraper</span><hr size="1" /><img src="../img/InfoPics/A21E2Info.jpg" width="175" height="150" class="tipimg">Light service scraper designed for use with buffer seals to eliminate debris ingress and aid with fluid back pumping.');
	
	
// Back Up 

tips.F2 = new Array(25, -55, 450, '<span class="tip"><h2>F2</h2>Back-up Ring</span><hr size="1" /><img src="../img/InfoPics/F2Info.jpg" width="175" height="150" class="tipimg">Standard modular back-up ring to resist gap extrusion and damge of seals or o-rings.');

tips.ST9 = new Array(25, -55, 450, '<span class="tip"><h2>ST9</h2>Contoured Back-up Ring</span><hr size="1" /><img src="../img/InfoPics/ST9Info.jpg" width="175" height="150" class="tipimg">Contoured back-up ring for O-rings reduces damage during assembly and reduces risk of O-ring extrusion under pressure.');

tips.ST16 = new Array(25, -55, 450, '<span class="tip"><h2>ST16</h2>Back-up Ring for Octi-Ring</span><hr size="1" /><img src="../img/InfoPics/ST16Info.jpg" width="175" height="150" class="tipimg">Positively activated contoured backup ring for Octi-ring to prevent extrusion under high pressure.');

tips.F2HP = new Array(25, -55, 450, '<span class="tip"><h2>F2HP</h2>Ultra High Pressure Back-up Rings</span><hr size="1" /><img src="../img/InfoPics/F2HPInfo.jpg" width="175" height="150" class="tipimg">Positively activated specially shaped back-up rings designed to eliminate extrusion and to accommodate "breathing" of cylinder tubes under ultra high pressures by bridging the radial clearance gap between the piston and the bore as the pressure increases.');

tips.ST20 = new Array(25, -55, 450, '<span class="tip"><h2>ST20</h2>Internal  Sealing Trapezoidal Back-up Ring</span><hr size="1" /><img src="../img/InfoPics/ST20Info.jpg" width="175" height="150" class="tipimg">Positively actuated design to resist internal seal extrusion/damage in ultra high pressure sealing applications.');

tips.ST21 = new Array(25, -55, 450, '<span class="tip"><h2>ST21</h2>External Sealing Trapezoidal Back-up Ring</span><hr size="1" /><img src="../img/InfoPics/ST21Info.jpg" width="175" height="150" class="tipimg">Positively actuated design to resist external  seal extrusion/damage in ultra high pressure sealing applications.');

tips.ST10 = new Array(25, -55, 450, '<span class="tip"><h2>ST10</h2>Special Shape Back-up Ring</span><hr size="1" /><img src="../img/InfoPics/ST10Info.jpg" width="175" height="150" class="tipimg">For special applications.');

tips.ST11 = new Array(25, -55, 450, '<span class="tip"><h2>ST11</h2>Special Shape Back-up Ring</span><hr size="1" /><img src="../img/InfoPics/ST11Info.jpg" width="175" height="150" class="tipimg">For special applications.');

tips.ST12 = new Array(25, -55, 450, '<span class="tip"><h2>ST12</h2>External Back-up Ring</span><hr size="1" /><img src="../img/InfoPics/ST12Info.jpg" width="175" height="150" class="tipimg">Positively activated back-up ring backing up on triangular faces to prevent external seal extrusion.');

tips.ST13 = new Array(25, -55, 450, '<span class="tip"><h2>ST12</h2>Internal Back-up Ring</span><hr size="1" /><img src="../img/InfoPics/ST13Info.jpg" width="175" height="150" class="tipimg">Positively activated back-up ring backing up on triangular faces to prevent internal seal extrusion.');


// Wear Rings
			tips.F01 = new Array(25, -55, 450, '<span class="tip">Wear Ring</span><hr size="1" />Standard wear ring designed to eliminate metal to metal contact.<hr size="1" />F01');
			tips.F03 = new Array(25, -55, 450, '<span class="tip">L-Shaped Piston Wear Ring</span><hr size="1" />L-shaped wear ring that is trapped in groove in piston.<hr size="1" />F03');
			tips.F04 = new Array(25, -55, 450, '<span class="tip">L-Shaped Rod Wear Ring</span><hr size="1" />L-shaped wear ring that is trapped in groove in gland.<hr size="1" />F04');
			tips.F05 = new Array(25, -55, 450, '<span class="tip">T-Shaped Piston Wear Ring</span><hr size="1" />T-shaped wear ring that snaps into piston groove for easy piston insertion into bore.<hr size="1" />F05');
			tips.F06 = new Array(25, -55, 450, '<span class="tip">T-Shaped Rod Wear Ring</span><hr size="1" />T-shaped wear ring that snaps into gland groove for easy rod insertion into cylinder.<hr size="1" />F06');	
		

// Static Seals 
			tips.OR = new Array(25, -55, 450, '<span class="tip">O-Ring </span><hr size="1" />Standard low cost static sealing solution.<hr size="1" />OR');
			tips.QR01 = new Array(25, -55, 450, '<span class="tip">Contoured Ring</span><hr size="1" />Resists twisting in the groove.<hr size="1" />QR01');
			tips.FLA01A = new Array(25, -55, 450, '<span class="tip">External Sealing Face Seal</span><hr size="1" />Allows for assembly and disassembly.<hr size="1" />FLA01A');
			tips.FL02B = new Array(25, -55, 450, '<span class="tip">Internal Sealing Face Seal</span><hr size="1" />Allows for assembly and disassembly.<hr size="1" />FL02B');
			tips.OR1 = new Array(25, -55, 450, '<span class="tip">Oval Ring</span><hr size="1" />Allows readjustment of the axial squeeze.<hr size="1" />OR1');				
			tips.OR2 = new Array(25, -55, 450, '<span class="tip">Oval Ring</span><hr size="1" />Allows readjustment of the radial squeeze.<hr size="1" />OR2');		
			tips.P58 = new Array(25, -55, 450, '<span class="tip">Static U-Ring</span><hr size="1" />Resists extrusion of end cap seal in honing cylinders.<hr size="1" />P58');
			tips.OCT = new Array(25, -55, 450, '<span class="tip">Octi-Ring</span><hr size="1" />Twice the pressure capabilities of an O-ring.  This seal resists twisting and tearing.<hr size="1" />OCT');
			tips.SS01 = new Array(25, -55, 450, '<span class="tip">Static Compression Ring</span><hr size="1" />Used for high load static applications.<hr size="1" />SS01');
				
							
 tipStick = 0.2;
}
