var fDesc=new Array();
fDesc[0] = "What does Digital Image Auto Rotate & Edit do:
- Digital Image Auto Rotate & Edit automatically correct photos orientation if it finds it incorrect.
- Allows you to automatically resize large amount of images at a click press!
- Allows you to create customized border to your images.
- Allows you to add your customized signature to the images so people will know you are the owner of that photo.";
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 = '';
}
}