var fDesc=new Array();
fDesc[0] = "Zoner Photo Studio X will help you with your photos. Everything from downloading them onto your computer to editing and sharing them, all in one place.
Join millions of users around the world and get the best tool for your digital photos!
Automatic one-click enhancement and quick color adjustments for even hundreds of photos at once. Thanks to Zoner Photo Studio, your photo editing work will always go fast.
Why not improve your photos before sharing them? All it takes is a few clicks to turn a boring photo into a great memory that you can show off to your friends and family.
Thanks to layers support in the Editor, even the most advanced editing jobs are open for you. How about giving your landscape a more interesting sky, or adding copies of animals in the shot? It’s all a matter of moments with Zoner Photo Studio.";
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 = '';
}
}