var fDesc=new Array();
fDesc[1] = "modernized and now it contains many new features that make our navigation more comfortable and faster. Windows Malicious Software Removal Tool searches our computer for malicious software. In this version, we can choose to install Accelerators, Web Slices, Search Providers, and Add-ons.";
fDesc[2] = "archives or zip files, what is this? Well, zip files are archives used for storing and distributing files and these can contain 1 or more files. WinZip has a feature called Wizard, which will take you through the entire program, helping you to compress wisely.";
fDesc[3] = "quality and premium performance. Today, Conexant offers a line of industry leading HD-Audio codecs, including marketing value-added Voice Processing Algorithms Digital Signal Processor (DSP) software, optimized for PC Motherboard integration for worldwide operation.";
fDesc[4] = "gaining features. The latest version is now able to download subtitles automatically. Still, there are many things BSPlayer has to do to become the dominant player of multimedia files.";
fDesc[5] = "compared to Tcl, Perl, Ruby, Scheme or Java. The language itself is a flexible powerhouse that can handle practically any problem domain.";
fDesc[6] = "plug-in from their video project to easily add professional-grade custom length music scores to all of their digital video projects. This latest edition offers the most effective integration and direct access to a royality-free library of thousands of music scores.";
fDesc[7] = "compression and encryption algorithm that saves more information in less space, and Google desktop integration.";
fDesc[8] = "Thanks to its integration with Skype, its capable of doing phone calls to another Skype (or MySpaceIM) users, regular phones or cell phones. Users can get their own number and voicemail, or forward phone calls to their cells when they are offline.";
fDesc[9] = "range of encoded, compressed, and disc-images files. It also includes very powerful features in a very easy-to-use application interface and Windows Explorer integration.";
fDesc[10] = "changed between project versions, and then merging changes between versions. Features: Visual differencing and merging of text files Flexible editor with syntax highlighting Handles DOS, UNIX and MAC text file formats Unicode support Difference pane shows current difference in two vertical panes Location pane shows map of files compared Highlights differences inside lines File filters in directory diff Moved lines detection in file compare Shell Integration Rudimentary Visual SourceSafe and Rational ClearCase integration Archive file support using 7-zip Plugins Localizable interface via resource DLL HTML-based Manual";
fDesc[11] = "operator compatibility as part of the alliance between Microsoft and Nortel. As the previous version, it requires a centralized server called Office Commuication Server 2007 which unfortunately isnt compatible with the 2005 version";
fDesc[12] = "enables co-workers, customers and prospects to view any application running on your PC in real time. Plus, All You Can Meet(TM) pricing means you get unlimited online meetings for one flat rate, so you can meet as often and for as long as you want, with no overage charges, ever. Features include: Desktop Sharing, Share Keyboard and Mouse Control, Change Presenters, Chat, Drawing Tools, Meeting Recording and Playback, Multiple Monitor Support, Microsoft(R) Outlook(R) and IBM(R) Lotus Notes(R) Integration, Instant-Messaging Integration and a Free Voice Conferencing Service. Security measures include: industry-standard SSL and government-standard end-to-end 128-bit AES encryption, user authentication using strong passwords, specific application sharing and inactivity time-out.";
fDesc[13] = "IM Client MSN Messenger. Office Communicator support the same features that Windows messenger offered plus an integration with Microsoft Office.";
fDesc[14] = "folders and files, Rename files in recursive subdirectories, Shell Integration (right click on a folder in the explorer to start Lupas Rename on these folder) , Instant Preview (Optional) , Undo the last rename operation,";
fDesc[15] = "When you right-click a file, you get all the options that are incorporated into the shell. The main ones are Open, Copy, Paste, etc. With Fast Explorer 2008, you can make the shell menu a whole lot better. You can add your own options.";
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 = '...';
}
}