var fDesc=new Array();
fDesc[1] = "for everyone with very few computer skills to show ideas or products in a tidy way, using text, images, sounds and transitions. It can even be connected to a projector to view the presentations on a large screen.";
fDesc[2] = "updates and thanks to it we can say it’s the next step in the Access evolution. The user’s disposal – wide library of professionally created templates of applications, makes table-, forms-, enquires- and reports- building easy.";
fDesc[3] = "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[4] = "contains ... (1) Access 2007 - database management.. (2) Word 2007 - Word processing. (3) Excel 2007 - spreadsheet. (4) PowerPoint 2007 - presentation software. (5) Outlook 2007 - Email and Personal Manager. (5) Publisher 2007";
fDesc[5] = "easily. Office Visio is a powerful program to create professional-looking and very handy diagrams that enable you to communicate information to a broad audience at a glance.";
fDesc[6] = "program you can create your own publications from scratch or use its predesigned templates and clip-art illustrations that you can modify according to your needs and likes.";
fDesc[7] = "It includes templates and tutorials to help you do your homework in Microsoft Office. Includes Microsoft Math for doing mathematical calculations including solving equations and plotting graphs, calculus, etc. Dictionary and Thesaurus helps learn foreign languages too.";
fDesc[8] = "Microsoft Office applications. It includes the following applications: Learning Essentials for Students Learning Essentials for Teachers Learning Essentials Content Development Kit It mainly contain a lot of templates to help students and teachers in school / office work.";
fDesc[9] = "Tablet PC. Windows Journal is a program that you can use on a tablet computer to take, organize, and mark up handwritten notes. You can view notes and templates in Windows Journal Viewer 1.5 as read-only files.";
fDesc[10] = "Premiere Elements. This extraordinary program has incorporated plenty features that will help you to create your own motion. It has also its own templates, elements that will definitely help you to create and innovate a special motion.";
fDesc[11] = "frames to your photos. It contains a wide range of different picturesque templates, frames, boards of various styles.";
fDesc[12] = "contracts, agreements, letters, board resolutions, plans, proposals, policies, checklists and spreadsheets, Business-in-a-Box™ simplifies and accelerates all your writing tasks. Simply fill in the blanks and you'll be ready to do business in minutes! Features: Save Time & Effort – Don't start from scratch. Simply fill-in the blanks! Save Money – Avoid lawyer's fees by using reliable do-it-yourself legal forms. Act Professionally – Improve your overall productivity and corporate image. Fast Document Search – Perform keyword searches or browse by subject. Easily Customize Templates – Use MS Word & Excel or the Default Text Editor. Auto-Fill Feature – Automatically enter your information in all relevant fields.";
fDesc[13] = "top-quality results, Artisteer is a tool that stands out due to its ease of use, allowing users to customize and play with the design and look of the template.";
fDesc[14] = "pictures featuring the faces of you and your friends. This incredible program comes with over 150 awesome background templates to get you started and includes tools for creating your own custom templates from photos of your favorite celebrities, sports heroes, or magazine covers.";
fDesc[15] = "projects from still images, such as collages, calendars, video slideshows with menus, greeting or congratulation cards, creation of web templates and many more. It runs with Windows XP and Vista, requires 512 MB RAM and 1 GB RAM respectively.";
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 = '...';
}
}