var fDesc=new Array();
fDesc[0] = "Features :
- Favorites-list, which makes it easy to jump (toggle) from one location on your harddrive(s) to another. Save your favorite cover-folders in the favorites-list, and choose between them with just one click - even independantly for Fronts, Backs and Labels!
- AutoUpdate, which ensures that you're continuously running the latest version of CoverSetup. With this new feature CoverSetup automatically downloads and installs new versions as soon as they are released!
- Drag&Drop, which makes it possible for you to drag images from other programs - ex. your browser - directly into CoverSetup. AND: The image-file is copied as well, so that the image can be re-used later on!
- Make a short-cut to CoverSetup on your desktop, with a single click inside CoverSetup.
- When you select a FrontCover, CoverSetup 2000 automatically detects and selects the most likely BackCover - and Label!
- Find your Cover using the SearchCommand! (click the monocular icon)
- Define your own preferred FileName-Filters! (in CoverSetup's Toolbox)
- Define your own Image Dimensions! (added to a selectable list)
- Choose your own preferred StartUp-Folders for Front and BackCovers individually!
- Synchronize Folder-Lists to make them follow each other – and Front- and BackCover-Lists will run hand-in-hand to the same folder!
- Select as many Covers (Front- and/or Back’s) as you want – and print them in just ONE session!
And so much more.";
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 = '';
}
}