var fDesc=new Array();
fDesc[1] = "difficulties and in no time. The process is very easy just choose a picture you want and add it to Poster Forge then start creating a poster. Having this program installed on your PC you can play your friends or make them interesting presents.";
fDesc[2] = ", multiplication tables up to 12, a speaking clock and much more. All in a motivational and friendly game format.";
fDesc[3] = "quotation to meditate on. Motivational Messages has a freeware license so you can download it and use it with no charge. If you are thinking about redecorating your desktop, Motivational Messages is a very good, and free, option to take into account.";
fDesc[4] = "famous authors, politicians and sports performers. The screensaver has many customizable features, like music or transition effects; and allows you to create your own playlists and hide/show the clock and the calendar. Best of all, it is absolutely free.";
fDesc[6] = "psychic. Every time you start your computer, or at other times that you specify, this program will display a random quote of the day.";
fDesc[8] = "self worth, while learning to add numbers.";
fDesc[9] = "ethic, self confidence and a positive self worth, while learning their numbers.";
fDesc[10] = "can be eliviated by a password generator. Password Inspiration uses lists of words, inspirational and motiviational lists to come up with unique passwords that are secure, yet easy to remember. If you need to generate a list of passwords for users, you can do that as well. And the lists aren't limited to inspirational and motivational. Names of locations, characters from movies or books, all of these can be part of the list to help give you a password you will enjoy typing everyday.";
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 = '...';
}
}