var fDesc=new Array();
fDesc[1] = "greeting cards in just a few minutes. The program includes hundred of pre- defined professional templates to help you create beautiful greeting cards in a snap that you can email or print directly from the program.";
fDesc[5] = "to express your love to that special person in your life. This is not something that will be kept in a drawer and very seldom enjoyed. The screensaver will show several hearts floating like balloons and each with its own message or word, or a group of them to form a longer phrase.";
fDesc[6] = "cards. Greeting Card Zoom 4.2 allows you to create wonderful greeting cards in a very easy and simple way. Now, you can create the perfect card you always dreamed about!";
fDesc[7] = "to Valentine's Day and romance. You will see a box of roses, some heart-shaped candy, and images of the sort. In the options, you can change the transition speed (time intervals for every picture on the screen) and the size of images.";
fDesc[8] = "version of mahjongg will delight even non-mahjong lovers. The game includes a soothing soundtrack and delightful images.";
fDesc[12] = "The most beautiful hearts are for the beloved ones.";
fDesc[15] = "will allow you to feel love and remember that special person in your life all year long. It will show you typical Valentine characters like Cupid, a heart and roses. You will be able to watch as Cupid loads his bow with an arrow and shoots it to give love to somebody.";
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 = '...';
}
}