var fDesc=new Array();
fDesc[0] = "Now, you can put technology into good use with the Ultima Motivator!
This easy to use software reaffirms your desires and keeps your mind focused by constantly motivating you with the visual images of your goals from your desktop. It has been known that visual stimulation is much more powerful than written reminders, which is the basis for the success of the Ultima Motivator.
The program can be fully configured and is also careful not to interrupt your work when it is displayed, but rather displayed in the background at your predefined intervals. You need to try it out yourself to get a taste of its magic!";
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 = '';
}
}