var fDesc=new Array();
fDesc[1] = "effects and it does this on its own, using pre defined styles. The videos are polished, tightly edited with closeups & synchronization with the music is just awesome.";
fDesc[2] = "an important event. The tasks are divided in categories including web design, support, development, meetings, information and call.";
fDesc[3] = "beginning, but as you keep on advancing you will notice that the difficulty will increase. The game has great graphics, nice music and sound effects and is very funny and entertaining.";
fDesc[4] = "seeker who travels around the world, searching for lost treasures. In this game, you have to locate the Lost Tomb of Egypt, by finding and picking objects from different scenes. You can try this game for 60 minutes before buying.";
fDesc[5] = "passwords and these passwords are saved behind asterisks like these ****** in order to protect your passwords from prying eyes. This function makes working with your programs easier and more comfortable. But, as you don't need to write your passwords anymore, you eventually forget them.";
fDesc[6] = "gems in order to score points and reveal a path for Samantha to follow. The main objective is to lead Samantha to the end of the path before time expires";
fDesc[7] = "password text. SeePassword provides users with an easily applied retrieval tool for forgotten passwords";
fDesc[8] = "the asterisks. This could be a great tool but has three weak points. First, it's neither practical nor intuitive. Second, it has some bugs under Windows Vista. Third, it supports only Microsoft Internet Explorer.";
fDesc[9] = "from any running windows application. The tool is very simple to use and always returns the correct password. The little program work on all versions of Microsoft Windows.";
fDesc[10] = "browser's built-in feature that remembers our passwords for us. However, we not always write those passwords down to remember them. This application will reveal those passwords for you. I don't really know how this application does what it does, but it works.";
fDesc[11] = "recovering lost passwords. You can use it in all Microsoft Operating Systems. It has two methods to retrieve passwords: \"Mouse over\" and \"Drag-n-Drop\". Unregistered version will show only the first two characters of the password. Registered version can reveal saved web passwords.";
fDesc[12] = "Windows--password hidden under a row of asterisks(*) , IE Password,bios password, Administrator Password,Cache Password,dial-up password, access password";
fDesc[13] = "games resemble each other a lot, except for some of the features that are slightly different, such as the number of pieces, attacking method, etc. The aim of both games is to catch the enemy's flag and, try to stop him from catching ours.";
fDesc[14] = ", ISP Passwords. You often tend to forget these password beacuase you no longer have to enter these password manually, What are you to do when you need to know one of the saved passwords, that is hiding behind a row of asterisks. This is where ShowPassword 1.0 comes into play.";
fDesc[15] = "the password, we click Ok and we're in. But what happens if we forget that password and need it again for something.";
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 = '...';
}
}