var fDesc=new Array();
fDesc[1] = "services. This version has a updated system info module along with support for the latest CPU and graphics hardware, as well as the updated version of the Entech library that is used for detecting the clock frequency of the graphics chip core and memory.";
fDesc[2] = "for the edition, organization and view of our images files and pictures. It supports multiple formats, including the formats of some digital cameras, so we can manage all them using this fantastic application.";
fDesc[3] = "languages. PicaJet 2.5.0.495 begins with a tutorial that guides you through the whole process of organizing your existing digital photos.";
fDesc[4] = "snapshots of your disks, imports descriptions and thumbnails, and allows for offline access, searching, reporting, organizing...";
fDesc[5] = "documents, text and web files with ease. The wizard tool starts with a welcome screen followed by configuration and other options to make it easier to view and manage all your common images, documents, sound and video files in all the common formats.";
fDesc[6] = "can manage, edit, sort, add comments, print, create a database, send by e-mail, set filters, search by keyword, etc. It has a user-friendly interface.";
fDesc[7] = "\"query by content\" feature: specify a file (or even draw something!) and ImgSeek will give you more image files that are \"similar\" to the source file/sketch. Give it a try! You will be amazed.";
fDesc[8] = "allows you to have a nice image collection, which is both easy to access and browse. You will be able to add, view, store, and delete photos from the database.";
fDesc[9] = "any part of the screen, edit the captured image, and save the image into BMP/JPG/GIF formats.";
fDesc[10] = "a DLL at runtime. Multiple example projects included that show you handling of the DLL. For .NET Framework 1.1/2.0 in C#/VB. Also VB 6.";
fDesc[11] = "your blogs. You can place blogs on your own PC. In addition, you can use Akti Blog as a powerful media organizer.";
fDesc[13] = ", image collectors or anyone else who must manage and control access to large image collections.";
fDesc[14] = "single- or multiuser/multiworksta tion image database system. It features Web page generation and slide show support.This program may be especially useful for digital camera owners who want to manage large numbers of images and create Web pages. This ...";
fDesc[15] = "database of your image and photo collection that include a small preview copy of added images that allows you to explore you collection.";
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 = '...';
}
}