var fDesc=new Array();
fDesc[1] = "Sims. The sixth expansion pack for The Sims 2, which is called The Sims 2: Bon Voyage, presents a similar topic to develop. Vacation introduced a new neighborhood, called Vacation Island, where the Sims may take vacations with members of their own family or with other Sims";
fDesc[2] = "Word files. When converting one file into another, the program will allow you to preserve the original layout, images, text and more PDF's information. You can convert one or a group of files per time.";
fDesc[3] = "racing game. You are not forced to go lap after lap, boringly getting to the finish line. The fun moments it produces are rather short-lived, but all games are short to a certain degree. This game is an action-stunt simulator, if you will.";
fDesc[4] = "running applications. Program has a very convenient navigation bar which is placed at the top right corner of the desktop and allows you to easily move around your 360-degree desktop. An important feature is the ability to add web widgets to your desktop.";
fDesc[5] = "adjust the degree of opacity for each window using keyboard shortcuts or by doing a right click on the intended window. The program has also the ability to make the Windows TaskBar transparent.";
fDesc[6] = "moto with the cursor keys, riding the bike from left to right. You will have to race trying to get the bonuses that are scattered along the course, jumping obstacles and performing stunts, such as a 360 degree flip or a wheelie.";
fDesc[7] = ", because any calibration application requires you to provide a certain degree of feedback. Once installed, the application will ask you to follow a simple, three-step procedure that will set the monitor to a reliable color profile, so that the colors match certain standards.";
fDesc[8] = "diagrams. Inspiration 8.0 is devoted to allow 6 to 12 degree students to plan, organize, research, evaluate, comprehend and communicate knowledge.";
fDesc[9] = "“rat race” where everybody who gets his university degree starts, and then all the adventure begins. By rolling the virtual dices, the player advances and falls into different situations.";
fDesc[10] = "architecture. It has high degree of performance among all other browsers. Some of its best features include memory enhancer; freedom from popup, spyware, or adware as it has an in-built popup killer.";
fDesc[11] = "Screen Protractor floats above any other application so you can measure any angle on your screen.";
fDesc[12] = "users require to create 360-degree panoramic images and web virtual tours by ‘stitching’ overlapping images seamlessly together. Users are presented with a user-friendly interface that they can import/open files of JPEG, TIFF, or Quicktime for editing.";
fDesc[13] = "something and make all of those into a single panoramic view. Well, this application does just that, but on your computer.";
fDesc[14] = "panoramic pictures that will complete a 360-degree circle. You will feel as if you were in the middle of the scene with a video camera, rotating on your feet to capture everything around you in one continuous movement.";
fDesc[15] = "images, checks the order for them, determines if (s)he wants a flat image or a 360 degree cylindrical output file, and the application makes all the calculations for the overlapping areas, the 'contact' points, and it creates a panorama view out of the added images.";
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 = '...';
}
}