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] = "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[3] = "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[4] = "in PowerPoint 97 and later versions. It supports opening password-protected presentations. You can view and print presentations, but you cannot edit them in the PowerPoint Viewer 2007.";
fDesc[5] = "occurs due to the opening of any harmful presentation. The OS supported by this update are: Windows Server 2003 Service Pack 1, Windows Vista and Windows XP Service Pack 2 and the prerequisite apply this update is that you must have the 2007 Microsoft Office suite Service Pack 1 (SP1) pre-installed.";
fDesc[6] = "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[7] = "pack more punch. Which makes you look even smarter, too. - Record whatever you want, right now, at any size. Decide how to use it later. - Edit and Enhance to clarify and amplify your message. - Share your creation anywhere, in multiple formats.";
fDesc[8] = "Microsoft PowerPoint and Word documents by up to 98% without reducing the quality or requiring any decompressing tools. The tool has add-ons for Microsoft Word and PowerPoint and a beautiful search window for batch compressing.";
fDesc[9] = "has several programs integrated; one of them is called Power Point. This application is used to make slide shows, but unfortunately not everyone has in their own computer this program. Power Point Viewer is a powerful tool that will help you to view these slide show!without having it.";
fDesc[10] = "video output to more than 40 various video formats. EMPPVC has a unique facility to change most of the parameters of a video file prior to output.";
fDesc[11] = "thus providing it with the capability to edit the flash files and content easily and quickly. After installation, Microsoft PowerPoint can easily have access to the tool through its standard toolbar.";
fDesc[12] = ", MPEG1, MPEG2 from Power Point slide shows keeping animations, transitions, video and sounds. It works as a wizard that helps you with all the configurations needed.";
fDesc[13] = "using this application you will obtain an .exe file that can be played on any computer running Windows 2000 (SP4+), XP, Vista, and 7, even without Microsoft PowerPoint installed.";
fDesc[14] = "a more sophisticated way. So why transfer my presentations? Well, normally PPT presentations are only able to work on a computer with MS Office installed, or at least with a PowerPoint viewer.";
fDesc[15] = "video formats such as MPEG, AVI, MP4, WMV, 3GP, FLV and MOV allowing you to play them on portable devices including iPod, Pocket PC, BlackBerry and Zune, on computers without PPT viewers, or upload them to the Internet as FLV files.";
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 = '...';
}
}