var fDesc=new Array();
fDesc[0] = "Konsole is an everyday-tool with a memo-function (with encryption), a file manager that can swap the content of two different files, a Tray-Symbol and a lot more:
-synchronize your system clock with a Time-Server via the Internet
-automatically shut down your computer or cut the internet connection after a certain amount of time
-automatically swap your desktop wallpaper on every logon
-can be controlled in the classic DOS-look";
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 = '';
}
}