var fDesc=new Array();
fDesc[1] = "entering keywords of the episodes you want to download, you can get a list of related episodes, then you can choose the best one to download.";
fDesc[2] = "and information marketers, offering them a simple an easy to use tool to build web sites. During the installation, the program will check if you have the minimum requirements. But, if you your computer doesn´t meet them, the program will install anyway.";
fDesc[3] = "Sitecraft raises is very straightforward, and consists of the following five steps: 1. Site Modeling; 2. Page Settings; 3. Page Editing; 4. Services; 5.Publication.";
fDesc[4] = "will maximize your Website's Search Engine Ranking. FREE TRIAL.";
fDesc[5] = "computer according to keywords you have selected or perform websearches faster and easily than before.";
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 = '...';
}
}