var fDesc=new Array();
fDesc[1] = "pictures featuring the faces of you and your friends. This incredible program comes with over 150 awesome background templates to get you started and includes tools for creating your own custom templates from photos of your favorite celebrities, sports heroes, or magazine covers.";
fDesc[2] = "‘fantasy’ pictures featuring the faces of you and your friends. This incredible program comes with over 150 awesome background templates to get you started and includes tools for creating your own custom templates from photos of your favorite celebrities.";
fDesc[3] = "multiple characters, levels, and footbags to win trophies, experience, and abilitiesIncludes an editor for making your own footbags and adding new character skins.";
fDesc[4] = "motion play. The program can be used as a Sport Motion Analysis tool. It can help athletes improve their technique. It can play any video file format that is supported by Windows Media Player.";
fDesc[5] = "different sports and for over 19 different muscle groups from a database of over 130 different stretching exercises.";
fDesc[6] = "athlete information, SYDNEY: enter all medalists, STAR: create champion diaries, WEB: includes top web Olympics res...";
fDesc[7] = "enthusiasts. The software allows you to track your progress in your resistance workouts, aerobic workouts, diet, weight etc.";
fDesc[8] = "most flying potential, get ready and throw the tire in an angle that feels like just the right to pass that magic 400 feet mark.";
fDesc[10] = "Monitors.";
fDesc[12] = "appointments from the contact's record. Interactive--click beside the entry and return to the contact's record. Auto-posts events into contact's History page. Enter and track dates of importance in \"Important Dates\". Features include URLs, email, mass email from each contact record, Reports, Postcards, Measurements (sports, stats, etc.) and Academics tracking.";
fDesc[13] = "uncoached athletes, as well as coaches and support staff.";
fDesc[14] = "a sports blog.";
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 = '...';
}
}