var fDesc=new Array();
fDesc[0] = "DjVu Shell Extension Pack is an extension package for Windows, which enables you to take advantages of DjVu's various features.
- You can see DjVu thumbnails on Windows Explorer.
- You can search DjVu files using Windows Search.
- You can see DjVu preview on Windows Explorer and Microsoft Outlook.
- You can see/edit DjVu metadata on Windows Explorer.
- You can see DjVu files using Windows Photo Gallery, Windows Live Photo Gallery and any .NET Framework 3.0/Windows Imaging Codec based applications.";
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 = '';
}
}