var fDesc=new Array();
fDesc[1] = "and manage, your users will love having access to those hard to understand terms.";
fDesc[2] = "macros with your favorite script language and very large files of up to 248 GB or 2.1 billion lines.What is more, the program features a very simple and and intuitive user interface with tabbed windows.";
fDesc[3] = "banners, presentations, websites, menus and slideshows with flash content along with other useful online applications.";
fDesc[4] = "plug-in that can be hosted within their music editing studios. Users are presented with a large window interface with all of its controls on one clickable layer that offers them control of all parameters.";
fDesc[5] = ", printing, search, file management, loading and saving of explorations (snapshots).";
fDesc[6] = "(interactive calendar, picture mixer, memo pad, weather forecast and more). Desktop can be enlivened with clocks. Designed for big collections!";
fDesc[8] = "rectangles, circles and even polygon regions is provided and you can import all your current image maps.";
fDesc[9] = "number of map elements, you can make rectangular, circular and polygonal region types for the ultimate in flexibility and convenience.";
fDesc[10] = "have built in the functionality to know when various locations around the world switch into and out of daylight savings time and have not avoided the challenging locations. The map is fully clickable, so you can choose a city geographically, or via the list at the top of the screen. You can choose to see time displayed in 12 hour or 24 hour formats. You are also given some information along the bottom of the screen to relate the time zone you have selected to GMT and to your own time zone.";
fDesc[11] = "hyperlinked or clickable. That time we usually copy the URL or we manually type the URL again in a new window. This often makes our Internet surfing experience lousy. To help you with this there is small plugin that goes by the name of Open Selected URL developed by MuvEnum.";
fDesc[12] = "image collection. Image Browser has a slideshow-like interface that allows you to organize, magnify, e-mail, edit, print, and simply enjoy your images whether they come from a digital camera, the Web, a scanner, or hundreds of other sources. Browsing images and folders is easily done via keyboard shortcuts, buttons, and clickable thumbnail previews, or you can sit back and let slideshow mode do the browsing for you.";
fDesc[13] = "normally static boring buttons and clickable images usually found on web sites. It employs a simple interfa...";
fDesc[14] = "developer.";
fDesc[15] = "specified text and returns a clickable list of results. Adds a new button to the I.E. toolbar for easy access to the program whenever it is needed.";
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 = '...';
}
}