var fDesc=new Array();
fDesc[1] = "Clipping Personal. With these information management tools, all of them in one application, the process of information collection and customization will be very easy for you.";
fDesc[2] = "Microsoft Internet Explorer, but with many more options to make our navigation faster, safer, and enjoyable. It has a built-in calculator, ad filter, mouse gesture, Fill Form and direct access to external tools such as Paint; Add/Remove programs, Control Panel, wmplayer and so on.";
fDesc[3] = "forecast, radar, maps and more! Comes with a FREE customizable Crawler Toolbar that has terrific plugins.";
fDesc[4] = "featured with different modules and templates. You are able to fill your website with any content you like including pictures, files, texts and links. Publishing a site is easy and takes just few minutes.";
fDesc[5] = "your content, and getting more traffic.";
fDesc[6] = "newsgroups and Web. NewzCrawler includes podcast receiver and has built-in blog client.";
fDesc[7] = "feeds with both RSS and Atom feeds. The program allows you to create custom channels for your RSS feeds. You can search your news archive using the powerful built-in search engine.";
fDesc[8] = "XML or compressed gzip format, keep up-to-date, edit them, upload to web server and submit to search engines that support XML sitemaps.";
fDesc[10] = "Google, eBay, Amazon, news sites, blogs. Publish folders to the Internet. Synchronize folders, feeds and bookmarks across your home and work PCs.";
fDesc[11] = "which gives information about the rank of the web page in a search engine and finding the popularity ranking as well as helping the user in his choice of keywords that are more popular and are more useful to the user.";
fDesc[12] = "load your blog with fresh relevant post automatically . Get tons of traffic with your blog Now.";
fDesc[13] = "helpers and wizards, intellisense, references, objects, functions lists, Internal viewer, and much more.";
fDesc[14] = "* Get all search results instead of only 10 per page. * Automatically conduct batch searches.";
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 = '...';
}
}