var fDesc=new Array();
fDesc[0] = "Slovoed - series of best-selling PC dictionaries for Windows 7/ Vista / XP / 2000, that provides high translation rate, easy-to-use interface, detailed and up-to-date dictionary bases with numerous usage and sound samples.
This program is a part of the famous and widespread line of dictionaries with many advantages such as:
- Regularly updating dictionary databases with a high data compression ratio from all well-known publishers
- User-friendly interface which makes working with the dictionary easy
- Language identifier that inverts translation direction according to the language of typing, and along with the morphology module, lets you input words in any form and make your search smart.
- 3 operating modes: Extended Mode, Compact Mode and Pop-Up Translation
- Quick changing of translation direction by changing the layout on your keyboard.
- Virtual keyboard containing a lot of national layouts, which allows you to work with languages without changing your computer settings.";
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 = '';
}
}