var fDesc=new Array();
fDesc[1] = "and portals. The program is also very useful for webmasters to keep an eye on their competitors' websites for inbound web-links.";
fDesc[2] = "Use the program's advanced reporting features to print keyword analyzer, submission and ranking reports.";
fDesc[3] = "and optimization. Increase the number of visitors to your website and improve your search engine rankings.";
fDesc[4] = "direct add link page, that you can add your link directly. Such as www.a.com/addurl.html, www.b.com/add-link.htm l";
fDesc[5] = "Google Page Rank just waiting to link to you, and emails them with a customized message.";
fDesc[6] = "protecting your back links, and archieving higher link popularity and search engine rankings.";
fDesc[7] = "of link exchange with thematically related sites thus helping improve your Web site`s link popularity";
fDesc[9] = "manual scanning and checking for reciprocal links with your link partners. Link swapping is a great way to increase search engine rankings.";
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 = '...';
}
}