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] = "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] = "shall get a lot of services from windows live. It is a free service created by Microsoft. But there are many features that you will need to pay for like the Windows Live Call, which is something like Skype.";
fDesc[4] = ", 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[5] = "to create your own icon for your program. Set an attractive system tray icon. You don't need to dig into native codes to do that. Well, that's Java.Expect much more feature soon.";
fDesc[6] = "Essential is surprisingly simple for the novice user, and very convenient for the more experienced user. We also share our best photos with friends, upload to the network, or use templates to create digital albums.";
fDesc[7] = "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[8] = "chatting, watching trailers, etc. Java Runtime Environment has a Java virtual machine and all the necessary stuff to run these applications.";
fDesc[9] = "package. SweetIM Toolbar installs itself as an extra toolbar in our Internet Explorer browser. We can enrich and add a pinch of salt in the form of emoticons, animated images, celebrities’ videos, etc., to blogs, web e-mail, forums, social networks, and web pages.";
fDesc[10] = "spreadsheet, a presentation program, a database, a vector graphics editor and a tool for creating and editing mathematical formulas. Various languages and platforms.";
fDesc[11] = "ATI Catalyst Control Center can be used to fine-tune your graphic settings, enable or disable connected display devices, and change the orientation of your desktop, etc. Many features present you with a preview of your changes before they are applied.";
fDesc[12] = "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[13] = "houses which you rent and collect the money every month, and you also own some empty lots on which you can construct new houses. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[14] = "previous editions there is no much new to tell because the game is pretty much the same, only changes its location. For those who haven’t played the previous editions of this game, let’s say that this is a strategy game related to construction and real estate business.";
fDesc[15] = "ready for the contest called Town of the year. The game is the second release of the sequel and includes great improvements and amazing new features.";
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 = '...';
}
}