var fDesc=new Array();
fDesc[0] = "Free image viewer and slideshow creator!
ReaViewer is a fast, compact and FREE image viewer for with 65+ image formats support, including BMP, JPEG, GIF, ICO, TIFF, PNG, PSD and RAW images.
ReaViewer is a perfect software for creating amazing slideshow with your photos. With ReaViewer you can view pictures in a beautiful slideshow with effects like blend, slide, etc. Adding a mp3 soundtrack too you will have a really cool result!";
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 = '';
}
}