var fDesc=new Array();
fDesc[0] = "Designed For Home Users and Pool Professionals the only Pool and Spa Care software based upon Proven ANSI and NSPI Standards.
Main features:
- The software tells you what to do!
- Helps you determine the volume of water in your pool.
- Create a personal maintenance schedule tailored to your specific pool or spa to keep your water crystal clear.
- Print out a customized Water Adjustment Reference Guide.";
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 = '';
}
}