var fDesc=new Array();
fDesc[0] = "Advanced image browser and viewer designed specifically for easy image browsing and management.
Designed from the ground up to run fast and efficiently.
Features :
Enjoy your collections of images, videos & music with this sleek and easy to use software.
Supports the latest Windows multimedia standards (DirectX, DirectShow).
Multimonitor support in Windows 98/ME/2000/XP.
Now you can browse the thumbnails in one monitor and preview the full screen image in another monitor.
Radically new Print Preview feature, with drag-drop and resize capability.
Drag and drop thumbnail arrange feature.
Mouse wheel support for scrolling and zooming in/out.";
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 = '';
}
}