var fDesc=new Array();
fDesc[0] = "Quivi is an image viewer (specialized for comic/manga reading) which supports many file formats and compressed (zip, rar) files. It is aimed for fast & easy file browsing with keyboard or mouse.
Support of many image formats (JPG, GIF, PNG, PSD, BMP, etc.)
- Zip (& cbz) file support
- Rar (& cbr) file support
- Easy browsing with keyboard and/or mouse, shortcuts fully customizable
- Open source, uses the MIT License";
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 = '';
}
}