var fDesc=new Array();
fDesc[0] = "Synkron is an application for folder synchronisation that allows you to configure your synchronisations in detail. Despite having many features, the user interface of Synkron is very user-friendly and easy to use.
Synkron is able to synchronise multiple folders at once, analyse folders before sync, restore overwritten or deleted files, plan synchronisations and much more.
Synkron is a cross-platform application and runs on Mac OS X, Linux and Windows.
Synkron is distributed under the terms of the GPL v2 licence.";
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 = '';
}
}