var fDesc=new Array();
fDesc[0] = "Photodali Photo Manager is powerful and flexible photo manager for Windows XP/Vista/7/8. Photodali allows you to organize and view your photo collection. It also include many features in one place, such as digital photo manager and simple photo editor with a lot of filters and photos edit compatibilities. With Photodali you can import new pictures to your PC from your mobile devices simply and easily.";
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 = '';
}
}