var fDesc=new Array();
fDesc[1] = "new, intuitive interface aimed to streamline your work flow. Also, many of the features that were dispersed in several menus, now are under the Office button.";
fDesc[2] = "utilities as Word 2007, Access 2007, PowerPoint 2007 and others. It allows users to input data into cells included in a grid made of rows and columns.";
fDesc[3] = "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[4] = "Bars\". Microsoft Engineers now thougth it would be a good idea to change all the menus in order to make easier to see at a glance, Lets wait a little and see what the users think about this new experience. I think the change is good, but not that good.";
fDesc[5] = "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[6] = ", find, and share your notes and information more efficiently and effectively. The program features powerful search capabilities that help you locate information quickly and easy-to-use shared notebooks that allows you to manage information overload, whether online or offline.";
fDesc[7] = "efficiently and effectively. The suite includes Microsoft Office Access 2007, Accounting Express 2008, Microsoft Office Excel 2007, Microsoft Office Outlook 2007 with Business Contact Manager, Microsoft Office PowerPoint 2007, Microsoft Office Publisher 2007 and Microsoft Office Word 2007.";
fDesc[8] = "visual basic appliaction. It includes excel spreadsheet, chartspace, pivot table and data source connection.";
fDesc[9] = "additional converters and filters are for older or seldom used documents or image formats. This converter pack supersedes all previously released versions of the Office Converter Pack.";
fDesc[10] = "software. Supports all languages that are supported by Microsoft Office 2007.";
fDesc[11] = "effectively. Office Small Business includes word processing, desktop publishing, spreadsheet capabilities, and an e-mail and desktop information management tool.";
fDesc[12] = "the passwords of all your password-protected Microsoft Office documents. The great thing about this application is that it supports all versions of Microsoft Office, since the 2.0 version until the 2007 one. That is great, because you don't need individual applications.";
fDesc[13] = "share these files with their work groups. It’s an application which will allow you to open files in VSD, VSS, VST, VDX, VSX, and VTX formats, directly by double clicking on them. It’ll show them on Internet Explorer 5.0 or later versions.";
fDesc[14] = "and PowerPoint 2002. Producer 2003 provides users with many powerful new features that make it easier to synchronize audio, video, slides, and images to create engaging and effective rich-media presentations. Producer 2003 gives content and media professionals, as well as everyday PowerPoint users a host of new content authoring features.";
fDesc[15] = ", Infopath and OneNote. The program has a very modern and professional user interface and an easy-to-use wizard. It offers the ability to import/export all your applications' settings very easily as well.";
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 = '...';
}
}