var fDesc=new Array();
fDesc[0] = "CaesiumPH is a small, simple application that does one single job: compressing JPEGs images without any loss of quality. It means that the image is exactly the same as before the process, but about 15-20% smaller in size. So, you just save space without losing absolutely anything.
Caesium is a popular image optimization software available helping photographers, bloggers, webmasters, businesses or casual users at storing, sending and sharing digital pictures.";
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 = '';
}
}