var fDesc=new Array();
fDesc[0] = "MAGIX Photo Manager 16 Deluxe allows you to easily browse, sort and rediscover the most beautiful photos & videos from your life.
Main features:
- Intelligent filter feature for quick access.
- Describe your images with names, locations, events and ratings.
- Quick image optimization – with batch processing.
- Automatic categorization based on image contents.
- Regular backups of image database.
- Password protection for archive.";
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 = '';
}
}