var fDesc=new Array();
fDesc[0] = "RuTast-Software makes it possible to write Cyrillic letters, using a Latin keyboard. The software uses an onscreen keyboard with Russian standard and phonetic layout. On each key is a Latin and a Cyrillic letter. Therefore it is much easier for the user to choose the right key for the corresponding Russian letter. It is possible to make a new keyboards, e. g. "sequential" keyboard, as shown in the next illustration.";
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 = '';
}
}