var fDesc=new Array();
fDesc[3] = "ASF, HD AVI, HD H.264/AVC, AVCHD, HD Quick Time, HD MPEG4. Presents a built in video player to preview video and a snap shot grabber, can also split a file to several parts.";
fDesc[7] = "M4A. It lets you trim audio clips, process batches, merge multiple files to a single output, and configure output settings like sample rate, bit rate, encoder and channels.";
fDesc[8] = "application produces personalized report cards in a short time. It uses a set of statements written by the teacher or downloaded from the web which can then be customized to fit every individual student's needs.";
fDesc[9] = "business card you create with this product will create a professional and memorable impression.";
fDesc[10] = "photo ID card solution. Free Edition offers an ideal photo ID management solution that is both powerful and easy-to-use.";
fDesc[11] = "words and photos. You can select a card design among 200 designs from more than 15 categories and occasions like, wedding, birthday, travel, romance, humor and many other events.";
fDesc[12] = "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[13] = "Capture cards from the Table which equal a card in your hand for points, create builds to capture more cards. Tutorial included Also playable online";
fDesc[14] = "Tarot card associated with your life path number and destiny number and also tells you your lucky day, stones and color.";
fDesc[15] = "only make your intuitive powers stronger, but also make you more sensitive to the spiritual world.";
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 = '...';
}
}