var fDesc=new Array();
fDesc[0] = "Eyes Relaxing and Focusing – is designed to protect computer users' eyesight, especially that of those who spend in front of the monitor more than one hour a day. While occupied with various programs, games, designing or programming, users often lose the sense of time, especially if the process is absorbing. After some period, you must make a pause to let your eyes rest.
This product will allow you to train your eyesight during the break by means of particularly designed images that will appear on the screen. All you have to do is watch these images..
Important: the use of this program is prohibited for individuals who have epilepsy and/or mental diseases. Please contact your doctor if you have any doubts.";
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 = '';
}
}