var fDesc=new Array();
fDesc[1] = ", Impress (presentation), Calc (spreadsheet), Base (data base utility) and Draw (a drawing program). Same as Microsoft Office suites, the software calls the necessary program to accomplish the desired duty.";
fDesc[2] = "you can draw using the tools on your left. When you choose a tool, the different types of this tool that are available will appear on your right. You can pick the color that the chosen tool will use at the bottom of the screen.";
fDesc[3] = "can capture full program windows, images that appear in systems with multiple monitors, full spreadsheets, full scroll-down webpages…off-screen content included, all in one single image that you can later edit without exiting Magical Snap 2.";
fDesc[4] = "having to think about mouse clicks and keystrokes. ArtStudio also allows you to display photos, draw over them, add text to them and set them as a screen saver or e-mail it as E-mail Art.";
fDesc[5] = "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[6] = "Pro is designed to quickly and easily draw good-quality, straightforward designs.";
fDesc[7] = "stamps. It also supports deleting, creating or duplicating of pages. The program has a function to email and share your modified documents.";
fDesc[8] = "create shapes, insert pictures, and use templates for albums, business cards, CD labels, flyers, greeting cards, invitations, etc.";
fDesc[9] = "or French. The electrical circuits can be of direct or alternate current. Solve Elec features an oscilloscope and performs frequency response graphs.";
fDesc[10] = "tools, shapes, objects and vehicles to recreate the area of a road crash. Just choose a road template similar to the crash scene, give it a name, place some vehicles according to the crash scene and you will finish drawing in a few minutes without any skill.";
fDesc[11] = ", choosing from eight brush sizes and the color you want. After you finish the drawing, you can save it to BMP, JPG, GIF or PNG, fast and easily.";
fDesc[12] = "charts, line drawings, buttons, organization charts and many more. The program can design and draw with object orientation. It has a function to intelligently link two objects that you have created, so that when you move them, the layout balance of these objects is not messed up.";
fDesc[13] = "program creates diagrams and graphs. Moreover, using this program you can add graphics to a document, web pages and presentations quickly and easily. Also it is used with interactive whiteboards and data projectors.";
fDesc[14] = "line drawings from photographs getting closer to drawing from real life. The program checks the drawing for accuracy and indicates the score on pressing the 'Update Score' button. The exercises included guide the leaning process";
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 = '...';
}
}