var fDesc=new Array();
fDesc[1] = "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[2] = "free singing up. It gathers all communication, productivity and collaboration's tools in just one Web browser. Acrobat.com mainly aims at allowing people to collaborate in their e-documents.";
fDesc[3] = "fault-tolerant SATA RAID 10 arrays on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X and 945 chipset-based platforms. It provides support for high-performance SATA RAID 0 arrays & redundant SATA RAID 1 arrays on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X, 945, 925, 915 chipset-based platforms. It also provides AHCI support on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X, 945, 925 and 915 chipset-based platforms, as well as on Mobile Intel® 915/910 chipset-based platforms.";
fDesc[4] = "really easy-to-use since most of the utilities within the suite can be controlled and accessed through the Task Launcher homepage. The Works startup screen initially offers access to a calendar and contacts, but you can also view templates.";
fDesc[5] = "applications and standards-based Web sites Designing Web pages in conditions equivalent to a real browser, without losing direct access to the code, thanks to the new Vista feature live Dreamweaver CS4.";
fDesc[6] = "time. Using this program you will be able to recover the initial speed of youe disk units. In fact, it is much faster than many of its competitors, even it allows you to keep using your PC during the defragmentation process.";
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] = "computers, and allows maintaining maximum productivity and saving maximum of electric power. This utility adds the possibility to switch off some components for power saving in that way.";
fDesc[9] = "by scanning. The user can then store their documents on disk, or organize them for fast retrieval and management. They can then seemlessly share these documents with other applications like Microsoft Word or Excel for greater office productivity. It's as easy as clicking the scan button and sending the scanned file to the chosen associated application. These utilities empower the user by giving them total control of all their documents stored on disk.";
fDesc[10] = "delivery formats to suit the new media, such as interactive PDF format or Adobe Flash. Indesign allows publishers to create and submit compositions for printing.";
fDesc[11] = "category. The application allows you to use several monitors and expand your desktop to more than one of them. Newer operative systems, like Windows XP or Windows Vista have features like this. Basically, you can move a window from monitor A to monitor B in real time.";
fDesc[12] = "Oracle Databases. Over time we have seen more and more business logic and application logic move into the Oracle Server, so that PL/SQL programming has become a significant part of the total development process. PL/SQL Developer focuses on ease of use, code quality and productivity, key advantages during Oracle application development. The following are major features of PL/SQL Developer: Powerful PL/SQL Editor With its Syntax Highlighting, SQL and PL/SQL help, Object Descriptions, Code Assistant, Compiler Hints, Refactoring, PL/SQL Beautifier, Code Contents, Code Hierarchy, Code Folding, Hyperlink Navigation, Macro Library and many other sophisticated features, the Unicode compliant editor will even appeal to the most demanding user. Information is automatically presented to you when you need it, or is at most one click away. Integrated Debugger The integrated debugger offers all...";
fDesc[13] = "ability to compress/decompress the CSS code. The program can validate the CSS syntax online via the official W3 website. It also enables checking of syntax compatibility with many browsers.";
fDesc[14] = "InCopy® CS3 software is a professional writing and editing program that tightly integrates with Adobe InDesign® software to enable collaborative editorial workflows. InCopy helps writers and editors achieve new levels of efficiency.";
fDesc[15] = "Productivity E-mail slowing you down? Try Mail Alert. Mail Alert was designed with your productivity in mind. That's why we've made it easier for you to simply get your work done without the hassle of switching to your e-mail client every time you receive new mail.";
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 = '...';
}
}