var fDesc=new Array();
fDesc[0] = "Aquarium Lab allows you to keep track of you aquarium like a scientist, no degree needed. The program is built for easy data entry and supports multiple fresh and saltwater aquariums simultaneously. Aquarium Lab is a complete aquarium tracking software package for Windows Vista and XP, that will help you maintain healthy aquarium conditions. Properly monitoring and maintained aquarium conditions can lead to a truly beautiful and healthy aquarium.";
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 = '';
}
}