var fDesc=new Array();
fDesc[0] = "Aquatechnobase is a database dedicated to the pond’s management. Aquatechnobase is a database dedicated to the pond’s management, this database is multi ponds, and multilingual, its structure turns around around seven “cards”:
The Fish, the Plant, the Equipment, the Water analysis, a Logbook, the Pond, and the Illnesses.
All those cards are linked together and if they are correctly filled in they will become an eBook.
When a card is filled in, Aquatechnobase gives you some information’s like the age of your fish, the end of the warranty period…
In the pond’s card, the information’s generated by the software are a little bit more complete and gives you a summary of your pond.";
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 = '';
}
}