var fDesc=new Array();
fDesc[1] = "several text tools to configure the aspect of the subtitle, and video editing tools that allow inserting dialogs in sync with the video. Also, it allows you to write subtitles directly or import them from a previously made subtitle file.";
fDesc[2] = "add and remove resources such as text, images, icons, sounds, videos, dialogs and menus in almost all applications.";
fDesc[3] = "can capture full program windows, images that appear in systems with multiple monitors, full spreadsheets, full scroll-down webpages…off-screen content included, all in one single image that you can later edit without exiting Magical Snap 2.";
fDesc[4] = "Hollywood, and film your own movies. There are many tools that the user is given to successfuly complete a movie. For example, you can create your own scenarios, with several different items, like cars, backgrounds, houses, etc.";
fDesc[5] = "code seen on computer screens in the movies. Watch the code or glyphs falling down rapidly through the screen in aleatory patterns. The screensaver displays also well known dialogs from the films but this is optional.";
fDesc[6] = "folders promptly and easily. Direct Folders ensures fast and direct access to your preferred folders and recent documents. Jump out to any profoundly nested folder with a single click.";
fDesc[7] = "erasing most privacy threats in your machine including Internet history, cache, cookies, index.dat files, auto-complete forms, search assistant, recent documents, open/save dialogs, run files, Mozilla Firefox, Google Toolbar and more.";
fDesc[8] = "too. This program works with AOL, AIM, ICQ and MSN Messenger clients. You can choose the parts of the text to listen to. You have an oppurtunity to make all your programes speak.";
fDesc[9] = "images, menus, dialogs, version, and texts directly in the .res, .exe and .dll files.";
fDesc[10] = "for wxWidgets. The program is open source and it is under continuous development. This is a nice little tool for developers that don't have much resources to get a commercial development tool.";
fDesc[11] = "as and Open file screens on Windows operating systems. That’s all, but if you think about it, it’s a really cool function. As you can imagine, this applications is very easy to use and intuitive. No many options to choose from or features to understand.";
fDesc[12] = "into Windows' standard Save As/Open dialogs which are used by most applications.";
fDesc[13] = "file dialogs; b) a history of recently-used files and folders; c) the current folder will be displayed on the title bar.";
fDesc[14] = "This menu can be called by clicking the special button in the dialog caption. The hot keys are supported";
fDesc[15] = "little utility will allowyou to specify the size of the open/save dialogs,browse-for-fol der dialogs and, if you a...";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}