var fDesc=new Array();
fDesc[1] = "like customs buttons with gadget support, new tab page to access a new page, quick search box to navigate your web search faster, synchronized toolbar setting to access your information from any computer, and improved auto fill that allows you to have several profiles information.";
fDesc[2] = ", DVD-R/RW, DVD+R and other formats (high definition videos included). The new version of PowerDVD offers many new features; for instance, True-Theater HD (which boosts up low resolution videos to higher resolutions) and True-Theater Motion which allows to increase the frame rate.";
fDesc[3] = ", multilingual, and completely customizable. This utility gives us the opportunity to delete all the useless and obsolete data that we may be keeping in our system.";
fDesc[4] = "if necessary. It also shows you some important data about your hardware. SpeedFan 4.33 gets info from digital temperature sensors and internal chips of some components.";
fDesc[5] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[6] = "case comes up and you are ready to get to the end of it. Your mission is to investigate who is the killer of Miss Linnete Doyle, another passenger of the cruiser. Twelve levels will lead you to the truth, gathering clues on each investigation.";
fDesc[7] = "The program uses your cognitive abilities (visual memory, reflexes,etc.); however, while it is easily understandable for beginners, it is also highly efficient for experienced users. Learn more >> Go ahead and try replacing your Start menu right now! It is safe because Vista Start Menu does not change your system settings, thus making it easy to install, as well as simple to remove.";
fDesc[8] = ", Restore, Close etc. are remained intact. It adds four new menu items - Always On Top, Transparency and Minimize To Tray and Priority.";
fDesc[9] = "power and raise Atlantis, the submerged continent. This game is a great challenge of speed and logic. Graphics and moves of this game are well done and the game is very entertaining.";
fDesc[10] = "tiles for bonus points in the Tournament mode to beat the other player and increase your rating higher and higher.";
fDesc[11] = "with some of the Vista features. When we open the start menu we can see that in the top of the menu we can find seven buttons, and in the footer we can find more features, one search box, and five buttons.";
fDesc[12] = "types of video files and add a DVD menu to them .This incredible application enables you, not only to create static DVD menus, but also to add videos and music as background to your menu, edit the menu layout and much more.";
fDesc[13] = "pretty easy to use. It takes just a minute to make a nice drop down menu with nice graphics and cool behavior, and without write any single line of code.";
fDesc[14] = "your needs. The program enables you to get rid of those options you hardly ever used by moving them to the `Rarely Used` folder entry that opens a sub-menu in your right-click menu.";
fDesc[15] = "webpages in only a few minutes and without any prior DHTML or Javascript knowledge. It features a nice and intuitive user interface with only one window with different tabs and allows you to preview the menu as you build it.";
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 = '...';
}
}