var fDesc=new Array();
fDesc[1] = "really amazing in You will find all the information that you need, there are different topics such as people, environment, politics, that will let you have a full picture of the place you are looking up.";
fDesc[3] = "get to know what our children are searching for on the Net, view their send/received e-mail/instant messages, chat, etc. We can view the reports on Web activity, instant message activity, social networking profiles, and instant message alerts.";
fDesc[7] = "from your homework, tests, degree plan, loans, scholarships, and even your social life. The skinnable interface makes it a fun tool to use.";
fDesc[11] = ", and when for doing homework.";
fDesc[13] = "bedtime on a school night chatting online, and make sure homework is getting done. Try it for free!";
fDesc[14] = "application courses. ACCESS GRADER performs static analysis on Microsoft Access databases, comparing a student databases with instructor database.";
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 = '...';
}
}