var fDesc=new Array();
fDesc[1] = "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[2] = "Essential is surprisingly simple for the novice user, and very convenient for the more experienced user. We also share our best photos with friends, upload to the network, or use templates to create digital albums.";
fDesc[3] = "such as audio, video, images, program, documents, and other files, with users all over the world. LimeWire has been recently updated and now it features a smarter colorful interface.";
fDesc[4] = "tools as in Microsoft Office, Writer, Cal, Draw, etc but in a freeware version. It is easy to use and install and you can also open extensions such as .doc, .xl, etc.";
fDesc[5] = ", use and manage picture information, archive, print, make CD or 3D pictures.";
fDesc[7] = "the program asks for the name that we want to add to our album and we can see the demo in the program that teach to us how to use this useful program.";
fDesc[8] = "create interactive, flash-based quizzes and assessments easily. Although the application is a bit confusing to novice users, it becomes very handy with due practice.";
fDesc[9] = "and drop feature it is totally user friendly. We can easily create folders and subfolders that have unique templates and designs and host them online without any need for extra hosting. All we need to publish the albums online and share them with our friends is a user ID.";
fDesc[10] = "are using Autodesk Revit, AutoCAD or Autodesk Inventor applications of Autodesk Design, then from the Publish command that is attached, DWF files can be directly created.";
fDesc[11] = "will be able to view, process and enhance your photos very easily and fast. You can import photos from your digital camera or local folder, apply the effects you want, and then print them out, e-mail them, create a photo book, a slideshow, a screensaver, etc.";
fDesc[12] = "and publishing of the required files becomes a lot more accurate and a lot easier. It is also based on the former program DWG TrueConvert and has embodied the full suite of functions that can also be found in it.";
fDesc[13] = ", demos, prototypes, simulations, and eLearning courses for the web, Mac and Windows® desktops, DVDs, and CDs. Integrate virtually any major file format, including video created with Adobe Flash® software and native 3D content, for the greatest return on your creativity.";
fDesc[14] = "existing FrameMaker users who want to author and publish technical documentation in multiple languages. Adobe FrameMaker 8 software combines word processing and XML-based structured authoring with template-based publishing.";
fDesc[15] = "let you create 360° interactive web pages with Hotspots to other scenes, web pages or multimedia. This can be used to produce virtual tours of real estate properties, tourist destinations, showrooms or shopping malls.";
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 = '...';
}
}