var fDesc=new Array();
fDesc[0] = "* Clean and easy-to-use interface
* Explorer-like interface: folder tree and file list view, drag&drop, context menus
* Thumbnail mode: shows all images in a folder as icons (you can change size of thumbnails)
* Customizable printing imagers and thumbnails with print preview
* Slide show
* Different Wallpaper operations: center, stretch, tile and position modes
* Image file name as command-line parameter
* Animated GIF images and Windows animated cursors(ANI) are supported
* Powerful Bookmark functions: add your favorite folders and copy/move to them
* File operations (copy, move, rename and delete)
* FullScreen mode
* GIF Inspector: explore and tune up animated GIF files
* Images can be displayed in stretch, fit and tile modes
* Icons from EXE, DLL, ICL(icon libraries) files can be viewed and extracted
* Build-in image converter
* Plug-ins: HTML and Multimedia viewers are now available
* and more...";
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 = '';
}
}