var fDesc=new Array();
fDesc[1] = "supports mpeg2 (that is, Quick time is now compatible with .mpg, .mpeg, .vob, .vro, .m2v, .m2a, .m2s). It is also compatible with a variety of audio formats like AIFF, WAV, MOV, MP4 (AAC only), CAF and AAC/ADTS. QuickTime also opens images in jpeg format and other image formats.";
fDesc[2] = ", new panels for Masks and Adjustments, on-the image that we can apply some adjustments to the style of Photoshop Lightroom, a 3D engine, and then only for begin.";
fDesc[3] = "photos (pictures) to email, send to mobile phone, create calendars, slide shows, greeting cards, print pictures or output files, etc. from images captured by camera, scanner, or whatever digital mean, or from existing pictures on the Hard Disk or other removable memory media.";
fDesc[4] = "beyond the basics. Apply incredible effects, organize and retrieve automatically your pictures from any device (from cameras to cellphones) and share them.";
fDesc[5] = "files in over 400 file formats (GIF, BMP, PNG, JPG, JPEG, TIFF, PCX, ICO, IMG, PDF, PIC, PSD, RAW, RGB, TGA, and many more).";
fDesc[6] = "Products. Adobe ExtendScript Toolkit 2.0 comes with CS3 Suites or with separate applications like Adobe Bridge CS3, Photoshop CS3, Illustrator CS3, InDesign CS3, and After Effects CS3. It is not included with Adobe Premiere CS3. This program is quite nice and has limited tools.";
fDesc[7] = "organize, browse, locate, and view creative assets. Bridge provides centralized access to project files, applications, and settings, as well as XMP metadata tagging and searching capabilities.";
fDesc[8] = "the actions that need to be done after taking a photo - that is, transfer it to the PC, edit it, and, finally, create a presentation or print it.";
fDesc[9] = "(e.g. red eye) or get creative. Use for web, email, or print. Photoshop plugins, animation, and much more. FREE. Registration required.";
fDesc[10] = "I think there is no other tool like this which has so many useful features available in just one bundle. Digital Camera Tools for Adobe PhotoShop has following plugins for Adobe Photo Shop AutoEnhance, Colorcast Correction, Exposure Compensation etc.";
fDesc[11] = "draw your own works of art. You can acquire digital photos from file on your computer or directly from a scanner and at once start to work with them.";
fDesc[12] = "the photographic and printing industries for its ability to increase image size well over 1000% without the loss of sharpness or detail that you would normally expect. Its patented, fractal based interpolation algorithms work like nothing else and the results speak for themselves.";
fDesc[13] = "good price the users can create and optimize animated GIF images, buttons, banners and other Web graphics that draw the attention of the site's visitors.";
fDesc[14] = "with useful information and tips, showing the more practical and straightforward manner of performing many Photoshop tasks. It would be very useful for graphic designers, photograpers and commercial artists.";
fDesc[15] = "helps you create striking DVD and Blu-ray Disc titles and interactive web-based tours for film, business, training, events, and more.";
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 = '...';
}
}