var fDesc=new Array();
fDesc[0] = "Every time when you start up your computer, this program writes the verse from the Bible on the desktop wallpaper. If you click on it by a mouse button you will see another verse and so on.
This version contains 1000 Bible verses. These verses appear by random (but we know, that the change is from God);
There are English, French, German, Russian, Ukrainian, Armenian, Hindi, Chinese and Thai verses.";
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 = '';
}
}