var fDesc=new Array();
fDesc[1] = "in the world of lineage. It is a classic MMORPG with a lot of elements very straight forward. Although it may be hard for casual gamers, committed gamers will enjoy this good time.";
fDesc[2] = "and options provided by any HTTP server with great performance and absolute control of it. Its administration is very easy however it doesn’t have any GUI; by using commands and scripts you can set it up quickly in almost any platform.";
fDesc[3] = "first stand-alone expansion pack launched for the fifth installment of the game. This expansion should not be missed by any fan of this amazing strategy saga.";
fDesc[4] = "provides color management engine which features ICC profiles and other functions like white balancing, contrast, sharpness, saturation, lens correction, image perspective and trimming, outputting and printing.";
fDesc[5] = "commercial sound and produce higher quality audio. Available for formats Pro Tools 6.4+ (RTAS Audio Suite/HTM), VST, MAS, Audio Unit, and DirectX, instead of a varied amount of plug-ins, users have the advantage of Ozone’s 7 plug-ins in one.";
fDesc[6] = ", 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[7] = "design and highest performance and security for the Windows platform by utilizing multiple CPUs/CPU-cores.";
fDesc[8] = "player too. You can view, edit, enhance and manage all your photos in couple of clicks. Ai Picture Utility supports drag drop feature that enables the user to work faster. Ai Picture Utility has in-built unzipper that can extract multiple zip files in single click.";
fDesc[9] = "professional with demanding clients or an amateur balancing your photography with the pressures of work and family life, time is your main enemy. RawShooter | premium 2006 is designed to minimize the time spent at your workstation, giving you the best quality output and the fastest and simplest workflow of any similar product on the market today.";
fDesc[10] = "my site handle? Will my site crash under load? What are the response times? Easy to use, no scripting but can design advanced scenarios";
fDesc[11] = "elements, atoms and molecules, word equations, chemical symbols, Periodic Table, chemical formulas, balancing chemical equations.";
fDesc[12] = "using a comprehensive set of image editing tools, and then create high quality prints, multimedia slide shows, photo screen savers, and more. Its features include perspective correction, color balancing, precise brightness, contrast, and saturation adjustment, retouching (cloning, painting, speck removal, smudge, etc.), filtering, compositing, resizing, tinting B&W images, creating photo calendars, converting color images to B&W, sharpening and unsharp masking, blurring, advanced mask creation tools, printing (including poster-size output), TWAIN support, text overlays, page layout, file browser, special effects, monitor calibration, support for standard CC and Wratten filter designations, and support for all standard image file formats.";
fDesc[13] = "concentration and ideal gas calculators simplify solving of all kinds of stoichiometry questions, both textbook and real life ones.";
fDesc[14] = "captured under specific conditions that a camera lens can't handle correctly. All professional tools for common lens corrections are combined in a very straightforward and easy to use interface. Lens Distortion: With the Lens Distortion component it's possible to fix both pincushion as well as barrel distortion. Spherised or inflated images can easily be corrected. Included with this component is correction of chromatic aberration. Perspective: Perspective distortion transfers rectangular objects to slanted items in a photo. A common example is in architectural photography. The distortion introduced with shooting an image when a camera base is at a low angle from a building, with the object towering above the photographer can be fi xed by using this filter. Squeeze: Stretching at the edges of an image can be the result of using a wide angle lens to capture a group of objects in a line,...";
fDesc[15] = "images. Those images are often needed for some print works. The user interface is aimed to provide the smoother experience as possible, balancing the seamlessly easiness of a step-by-step wizard combined with well-formed screens with many options.";
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 = '...';
}
}