var fDesc=new Array();
fDesc[0] = "ePic is a compact and easy-to-use program that allows you to start watching your photos with no additional software.
This software gives you a simple and intuitive way of viewing, which will allow you to quickly and easily find and review your photos.
With one click you can browse your photos in a Slide Show. By using the capabilities of 3D graphics cards you can also integrate elaborate page transitions.";
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 = '';
}
}