var fDesc=new Array();
fDesc[0] = "This program allows you to view BPG Images.
Features:
* Large images are autoscaled to fit screen area
* Image transparency (Alpha-Channel) support
* Basic support for animated images
* Zoom In/Out
* Full screen mode
* 'Stay On Top' mode
* Support mouse dragging of the zoomed image
* Cyclic view of all images in the same directory
* Drag & drop support for files and folders
* Saving a copy of the opened file as a PNG file
* Saving a copy of the opened file
* Deleting the opened files
* Rotating the view (rotated view can be saved as a PNG file)
* In Windows (and Ubuntu Linux) you can open BPG files directly from explorer (installer creates file association)
* Thumbnails preview in Nautilus/Thunar/Dolphin (Ubuntu/Xubuntu/Kubuntu)
* Thumbnails preview in Windows Explorer (for Windows Vista or higher)
* Prebuilt DEB packages for x86 and x86-64 architectures (Ubuntu/Xubuntu/Kubuntu) available at home site.
* Embedded translations: Russian,English";
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 = '';
}
}