var fDesc=new Array();
fDesc[1] = "more from their player. Its forward backward button option, media library, online music search option, minimode are very useful additions. All this packed in a simple interface and makes it a great media player to work with.";
fDesc[2] = "of publications and marketing materials. Unlike many other Office's applications, Publisher 2007 does not have the new Ribbon fluent user interface and it still looks pretty much the same as the previous version.";
fDesc[3] = "source codecs like Ogg vorbis. With the built-in utilities like library manager, music ripping and burning to CDs and its great playback quality, it is indeed a great music player to have.";
fDesc[4] = "contact list, manage a household budget and keep up with your correspondence. Works gives you the basic tools you need to make your tasks easier from start to finish.";
fDesc[5] = "related to Creative Hardware, Drivers and Application Software. The Program identifies the devices connected to the computer and generates information which helps the product developers.";
fDesc[6] = "Products. Adobe ExtendScript Toolkit 2.0 comes with CS3 Suites or with separate applications like Adobe Bridge CS3, Photoshop CS3, Illustrator CS3, InDesign CS3, and After Effects CS3. It is not included with Adobe Premiere CS3. This program is quite nice and has limited tools.";
fDesc[7] = "from Creative, that includes the webcam console ( basic webcam usage), webcam center (basic and advanced usage) or webcam central (replacement for webcam center) and Creative livecam application (animated avatars)";
fDesc[8] = "description, images, prices, condition, etc. to eBay. Search engines for finding specific items. No HTML knowledge, lists edition for adding items, reusing the lists, change the list format or get templates, add pictures, payment conditions, shipping, taxes, and upload them at once.";
fDesc[9] = "management of simple activities of the office. It is ideal to management the activities of the home. Its execution is very rapid. It has portable version to take the information in a USB memory.";
fDesc[10] = "twenty of the best known file formats and it allows you to add many more using different plugins and freely-available codecs. Play the music you like wherever it is - on your computer, in FTP folders or on the web. Create dynamic playlists and burn them to CD with the Ashampoo BurnIt! Add-On.";
fDesc[11] = ", Double Driver scans your computer and lists all the hardware devices that are installed, then it retrieves the driver information for each one of them and lists those, too.";
fDesc[12] = "pronunciation in a foreign language. It offers you a complete system for learning words through a flashcard based system. The flash cards come with picture and sound. The deluxe version of the software adds pronunciation practice and mobile support.";
fDesc[13] = "xhtml or Javascript. The program's interface is pretty nice and easy to use, and the most important thing, it generates strict xhtml compliant code.";
fDesc[14] = "getting slower - it's Windows that's getting clogged up. One of the main reasons for this is garbage left over by programs that don't get removed properly.";
fDesc[15] = "to do lists, checklists, holidays, ideas, outlines, collections, videos, books, reference info and more Whenever you want to create a new list, a wizard will assist you.";
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 = '...';
}
}