var fDesc=new Array();
fDesc[0] = "psdAutoSaver is a plugin for Photoshop that helps protect valuable work by automatically saving the images being edited to one or more backups files, as you work.
Main features:
-Enable or Disable psAutoSaver easily.
-Supports Photoshop 7, CS, CS2, CS3, CS4 (32 & 64 bit), CS5 (32 & 64 bit)
-Control over how often backups are made.
-Control over where files are saved.
-Control over how many backup files are saved (so you keep a history).
-Works with any format Photoshop can read.
-Saves image documents as .PSD files to preserve temporary layers, etc";
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 = '';
}
}