var fDesc=new Array();
fDesc[0] = "FarmVilleBot is a small program which will help you in the game FarmVille.
FarmVilleBot will take care of your farm – it will seed whatever you order, it will gather in the crops in time and will not leave a chance to your harvest to get spoiled.
It will work even when you are busy with your work, study and even when you sleep.
With the help of this program you will be able to earn more coins and to get more experience.";
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 = '';
}
}