var fDesc=new Array();
fDesc[0] = "With Pump Select tool you can calculate the expected performance of a specific model for your usage. The compact, lightweight and portable Honda's WX series pumps are an excellent choice for homeowners, gardeners, boat owners, and recreational users.
For general de-watering needs, Honda's popular WB series pumps offer the best features at a value price. These models offer commercial grade components like silicon carbide seals, anti-vibration mounts, and a fixed-mount cast iron volute and impeller.";
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 = '';
}
}