var fDesc=new Array();
fDesc[1] = "tools you will ever need to manage your web site and reach the top of the search engines!";
fDesc[2] = "promoting your web pages on the Internet. It can dramatically increase the number of visitors to your web site.";
fDesc[3] = "new Domain Name Monitor. Search Engine Commando's proven technology will increase traffic to your web site.";
fDesc[4] = "Submit your web site details to thousands of Search Engines, directories and link pages.";
fDesc[5] = "700 fully automated submission scripts. It generates detailed reports and maintains a comprehensive submission project history. It includes an engine profile editor, which will enable you to create your own automated submission scripts for any engine on the net. Comes with free script upgrades and has support for third party engine expansion packs.";
fDesc[6] = "submit to over 1700French and International Search Engines and Directories in just a few minutes. SubmitWolf FR h...";
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 = '...';
}
}