var fDesc=new Array();
fDesc[1] = "its own priority settings: high or low priority, planned work, approved work, etc. Well, this is useful if you have a lot of folders and you need to easily recognize the folder that you are working on.";
fDesc[2] = "stamps. It also supports deleting, creating or duplicating of pages. The program has a function to email and share your modified documents.";
fDesc[3] = "After we open an image we can add different filters: colored pencil (can duplicate layers and give the look of multiple shadows), crayon (gives light to our pictures), marker (helps with brilliants strokes of color), technicalPen, watercolor and more.";
fDesc[4] = "nature of your XML data.";
fDesc[5] = "applications has a marker is because everyone wants to have some privacy. And the way computers are designed does not precisely allow for that. The files that get deleted on an OS are not entirely deleted and can be recovered quite easily.";
fDesc[6] = "compliant with the standard W3C specifications. Interface is pretty nice and easy to understand. You just need a few minutes to make a nice menu, either horizontal, vertical and drop-down (combo-box) menus.";
fDesc[7] = "help them is to build roads between the different towns so as they can help each other. After the available turns are over barbarian will attack from the marker to the nearest city. Before this we must move all the available troops to that city.";
fDesc[8] = "volume of the entire track, or a portion of it, and use fade in or fade out effects for smooth transitions.";
fDesc[10] = ", Cut, Paste, Move, Delete, Fade In/Out , Cross fade, mix, amplify, normalize sound, add vibrato, invert, delay, flanger, phase, noise, chorus, reverse, use filters.";
fDesc[11] = "flexibility to change icon and color of the folder. It associates with the right click menu so it’s easy to customize folder icon in just a click. With this software a user can easily find and retrieve a folder.";
fDesc[12] = "changing the appearance of folders’ icons. For example you can change any folder's color, signify its priority level or choose another icon for it.";
fDesc[13] = "crossfade functionality. It also includes intuitive source/destination cutting, excellent marker setup, and an efficient crossfade editor with which all crossfade parameters can be edited in real-time.";
fDesc[14] = "like buttons and forms. In the freehand mode the pen marker follows your mouse. All shortcuts can be defined by the user.";
fDesc[15] = "basic controls for which no expertise is required. It supports all Windows operating systems and requires few kbs of hard drive space.";
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 = '...';
}
}