var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = "beautiful crystals, you'll find it hard to stop playing, attaching crystals to each other and making them disappear.";
fDesc[3] = "tools: - A complete management suite to keep your collection organized. - A comprehensive photo editor for both novices and experts. - An extensive collection of presentation options to boost your creativity.";
fDesc[4] = "scanner software, and it can be used by photographers, home users, scanning services and corporations. In spite of that it is easy to use, this program has wide functional capabilities.";
fDesc[5] = "profesional-looking documents from geetings cards, booklets to posters, banners and much more… With its table tool you can design stylish, high-impact tables and position them precisely in your documents. It´s very simple to present data and information.";
fDesc[6] = ", working with colors (designers, artists, developers, etc.), an easy-to-use and helpful color picker tool. We can create and customize our own palette.";
fDesc[7] = "professional touch. The program comes in three versions (Home, Standard and Professional), offering different features. The application offers great pre-correction features such as contrast enhancement, as well as additional enhancements which can be applied manually very easily";
fDesc[8] = "options covers almost anything your need to correct and enhance your photographs – from removing colour stains or red eyes, to correcting the exposure, white balance or brightness, this software is useful for all kinds of users.";
fDesc[10] = "adjustments, special FX and masks for transparency. It presents a variety of textures that you can modify.";
fDesc[11] = "programmers can use HexEdit to patch files or fix corrupt files such as documents and databases. Hex Edit is very stable and easy to use software which saves a lot of user’s time and effort by allowing him to track down and fix problems fast.";
fDesc[12] = "effects to help you enhance your photographs, allowing you to add colour, black and white, and texture effects, among others. Each effect applied can be customized by changing the by-default values.";
fDesc[14] = ", Invert, reducing the size of images for e-mail, and easily browsing through large collections of images (just press the space bar and backspace key).";
fDesc[15] = "bitmaps, icons, and cursors. It is possible to apply paint tools (pencil, brush, eraser, pick color, make a selection, draw a line, etc) and use the colour palette. This program also features photo editing tools such as filters, and effects.";
fDesc[16] = "applications are taking up. By placing a thin bar at the top of your screen, you will constantly be aware of the amount of available memory left in your system. It gives you information about both the physical memory and the pagefile memory.";
fDesc[17] = "scanned or digital photo image to show you what you would look like with a new hair style or hair colour, makeup or accessories";
fDesc[19] = "Colour Scheme of your Web Site in a moment.";
fDesc[20] = "addition to the three slidersthat let you interactively previewcolors,Colour Mouse's Colour Grab featurelets you view and capture th...";
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 = '...';
}
}