var fDesc=new Array();
fDesc[0] = "Frenkit Catalogue is a program that provides information for a wide range of repair kits for hydraulic brakes and clutch elements. It includes details regarding the following components:
- Repair Kit Master Cylinders.
- Repair Kit Calipers.
- Repair Kit Wheel Cylinders.
- Repair Kit Brake Pressure Reducing Valves.
- Repair Kit Clutch Master Cylinders.
- Repair Kit Clutch Slave Cylinders.
- Caliper pistons manufactured under O.E.M. specifications.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}