var fDesc=new Array();
fDesc[0] = "ImageVisu is a simple and powerful image and graphics viewer.
- It can display files from the Web (HTTP and ECWP).
- It has a slideshow mode.
- In addition to well-known image formats, it displays geographic and GPS files.
- This program is free of charge. It is not OpenSource.
- It runs on Windows 2000 / XP / 2003 / Vista / 7 .";
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 = '';
}
}