var fDesc=new Array();
fDesc[1] = "CorelDraw, the main application for vector design and layout; Corel Photo-Paint for image editing;Corel Capture, a screen-capture utility; ConceptShare, a collaboration service; and the Bitstream Font Navigator.";
fDesc[2] = "possible to handle all the boards in a single canvas and work individually or jointly. This way you can create several designs of various sizes neatly within a single file.";
fDesc[3] = "write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. Use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects.";
fDesc[4] = "designers, video editors and photo editors are fall in this category. Sqirlz Water Reflection is infect an animation application for adding some special effects in your images and AVI videos. As its name suggest it can add water reflections in your images.";
fDesc[5] = "just a few steps. This incredible program enables you to export the text, bitmap images and other contents from PDF document into a Word document, preserving the original page layout.";
fDesc[6] = "frame, a border around the image and a drop shadow for a 3D effect. When you´re satisfied with the result, you can save the picture in .BMP, .JPG or .PNG format. The program allows you to preserve the EXIF information present in the original image.";
fDesc[7] = "simple and intuitive user interface, it doesn't include a help file for beginners or those not familiar with this kind of software.";
fDesc[8] = "DWG compatible. For Engineering, Architecture, Plant Engineering, Territorial Managing";
fDesc[9] = "calibration work. The application can handle .jpg, .bmp as well as .gif image files and all that the user needs to do is to fix up couple of points to get the calibrated image. It facilitates provision for converting .gif and .bmp files into .jpg format as well.";
fDesc[10] = "handling fully-fledged images. For almost all possible conversions of images into icons or vice-versa, Image2Ico is a resourceful application, which supports a wide range of image formats including bitmap formats and JPEG Bitmap formats";
fDesc[11] = "not all this program does. Using this application you will be able to edit your image files with a lot of effects such as mirror, various filters, rotate, flip, watermarks, color enhancements, margins, crop and more.";
fDesc[12] = "options in image processing. The application is basically a suite of 20 tools, featuring all the necessary functionalities like cropping, rotating, mirroring and resizing the images with great ease.";
fDesc[13] = "smooth, scalable postscript file. It accepts raster images or bitmap graphics format (BMP) as input and produces high-quality scalable images of EPS, PS, GFS and SVG formats.";
fDesc[14] = "systems. It has the functionality to create bitmap fonts from any source such as scanned pictures or photos. It is a tool targeted t the professionals and supports open type and true type font conversion into Bitmap fonts.";
fDesc[15] = ", but a lot of professionals who deal with C programming might find it really useful. The utility was developed for converting bitmap images into C codes. This tool can save a lot of programmer’s time.";
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 = '...';
}
}