var fDesc=new Array();
fDesc[1] = "the actions that need to be done after taking a photo - that is, transfer it to the PC, edit it, and, finally, create a presentation or print it.";
fDesc[2] = "protects the users passwords even during viral attacks on the system. It boasts to have the best security by using the yet to be cracked Rijndael 256 algorithm. This certainly boosts the confidence when one views the product for first time.";
fDesc[3] = "import, export and conversion. Winner of PC Magazine Editor's Choice award and CRN Database of the Year.";
fDesc[4] = ", awareness, self confidence and concentration, speed, while playing and having fun. It provides 101 games divided in 3 main groups: There are games for children ages 3 to 6, games for kids ages 6 to 8 and games for kids ages 8 to 12. It runs under Windows 98, ME, and XP operating systems.";
fDesc[5] = "content with the correct tone, style and effect. The WordFinder Dictionary System gives you access to more than 100 different dictionaries in 10 different languages.";
fDesc[6] = "need to have some special statistics knowledge. The main difference from similar applications is that Statgraphics Centurion can make recalculations automatically when the input data or calculation parameters are changed.";
fDesc[7] = "By utilizing this software, you’re able to protect and ensure that you have saved and recorded your valuable recordings. This is a valuable tool that will give you confidence that your recordings will be saved and you won’t lose all of your hard work.";
fDesc[8] = "“what are your strengths?” Whether you’re new to the job market, out of work, or looking for a new challenge, Teaching-you Job Interview Skills will give you the confidence and interview know-how to make a good impression and secure the job of your dreams.";
fDesc[9] = "the ClueFinders—Joni, Owen, Santiago and Leslie—as they tackle challenging puzzles and problems while building self-esteem and confidence. The ClueFinders will help capture your child’s imagination and set the stage for excitement and adventure.";
fDesc[10] = "played by the included MIDI player. You see immediately whether you are in tune, and if not in what way you need to fix your voice.";
fDesc[11] = "conducting specialized analyses that are required for evidence-based practice.";
fDesc[12] = "worth, while learning their ABCs.";
fDesc[13] = "Free Winter Spirit Screensaver helps you feel the freshness and purity of frosty air.";
fDesc[14] = "self worth, while learning to add numbers.";
fDesc[15] = "ethic, self confidence and a positive self worth, while learning their numbers.";
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 = '...';
}
}