var fDesc=new Array();
fDesc[1] = "moments together. The screensaver will show you two hearts filled with Love, Passion, Romance, and many other feelings related to this great day.";
fDesc[2] = "looks like a real flame. Features: - Real-time heart beating! - Very realistic real-time fire effect and more";
fDesc[3] = "beautiful heart shapes spread everywhere around the red roses. It shows all screens one by one.It has a convenient graphic editor which allows you to insert any picture of your choice in the screensaver.";
fDesc[5] = "order to form groups of parcels with the same color. The parcels will form a group when you have three or more adjacent parcels with the same color, either horizontally or vertically.";
fDesc[6] = "game will let you feel yourself a real master of hearts. But be attentive and not let them beat you. Have a happy Valentine's Day!";
fDesc[7] = "that special feeling at any time that you want. You will see a very cute Cupid with his bow and arrow. He starts flying around the screen and suddenly he stops, loads his bow and shoots.";
fDesc[8] = "Valentine's Day, Christmas, Birthday, anniversary or any other special occasion. UniqueGiftMaker will help the user to make his greetings or gift baskets in the flash e-gift format. Sharing electronic gift items is much easier and faster than the conventional way of greetings.";
fDesc[9] = "see many different images that talk only about LOVE. There are images of cute teddy bears, puppies and children. They all carry either a heart or something similar with a message or only the word LOVE.";
fDesc[10] = "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[11] = "to remember that special person in your life all year long. Do you feel tired and stressed? Don’t worry anymore. As soon as your computer goes idle, your screen will make you think about love and everything that goes with it.";
fDesc[12] = "hearts. This software also allows you to put your own personal image (a photo of your sweetheart, perhaps?) into the screen...";
fDesc[13] = "various Valentine messages with a 3D text \"I Love You\" while framed with lovely roses and romantic music in the background";
fDesc[14] = "little hearts dance and bounce about your screen to a lively tune: when they bump into each other, they exchange a kiss!";
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 = '...';
}
}