var fDesc=new Array();
fDesc[0] = "Save all your favourite images to multiple albums of your choice.
Features:
* Create unlimited albums for image storage
* Move Images to different albums
* Insert bitmaps or jpegs of any size
* View Images in an image slide show
* Rotate function to correct upside down images
* Export images as a single file {slide show}, viewable in any current web browser.
* Export images separately
Important - Run the install file and application as an Administrator in Windows Vista / 7 / 8.";
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 = '';
}
}