var fDesc=new Array();
fDesc[0] = "A filemanager for Windows and Linux with built-in support for videos, images, file encryption, mobile phone remote controlling and much more.
Main Features:
* Complete folder and file management (Windows Explorer style).
* Favorite management for folders (favorites can be shown exclusively or just be opened in the folder overview).
* Support for videos: MPlayer is used. Thus pretty much all existing video formats are supported.
* Support for images: BMP, ICO, JPG, GIF, PNG and TIFF.
* Support for 128bit AES file encryption.
* Encrypted videos and images can be decrypted and viewed on the fly. They don't need to be completly decrypted into a file to watch them.
* Video playback can be remote controlled by Bluetooth.
* Video playback supports: fullscreen view, zooming, changing image settings, changing playback speed, rotating and mirroring.
* Files can be viewed as thumbnails or in a list. It is possible to use custom thumbnails for videos.
* The program is available for Windows and Linux.
* It has two independent parts: An Explorer and a standalone Media Player.";
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 = '';
}
}