var fDesc=new Array();
fDesc[1] = "package on the planet.";
fDesc[2] = "search engines and directories ? providing a sure way for people to find your home page.";
fDesc[3] = "and optimization. Increase the number of visitors to your website and improve your search engine rankings.";
fDesc[5] = "detailed reports before and after the submission process. It allows the user to submit his/her site without having any specific SEO knowledge.";
fDesc[6] = "in making submissions to important search engines, essential to the success of your web site.";
fDesc[7] = "lot of time and money since its fully automated. Promoting your software has never been easier. Load a PAD file and let the program do the rest.";
fDesc[8] = "which submits your web site and URLs to hundreds of major search engines including Google, DMOZ, AOL with just a few button clicks.";
fDesc[9] = "distribution sites across the Internet.";
fDesc[10] = "sites on the Internet. Post thousands of ads in fewer than 10 minutes using the 95-port submission system.";
fDesc[12] = "otherwise arduous process of submission much easier and less time-consuming.";
fDesc[13] = "information that is needed to successfully promote your software. Free submission to 20 download sites utility is included. Maximize your sales.";
fDesc[14] = "Directory Site Submitter enables efficient software assisted submissions. Setup in 5 minutes and submit 20-30 in 30 minutes";
fDesc[15] = "process easy and fast";
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 = '...';
}
}