var fDesc=new Array();
fDesc[0] = "Zoot XT is a next-generation information processor.
Main features:
- Add a RSS feed to any Zoot database or open the Feeds database and indulge in all the feeds you like.
- Field Blaster recognizes naturally occurring fields and adds them to your database automatically.
- Keep your databases synchronized across all of your computers effortlessly.";
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 = '';
}
}