var fDesc=new Array();
fDesc[1] = "(Rich Site Summary) feeds and useful shortcuts like people search, maps search, ICQ Chat rooms, ICQ Groups, ICQ Greetings, increase or decrease zoom.";
fDesc[2] = "of more then 20000 English words. It does not provide detailed descriptions of words but the word searching speed is good. It searchs in real time means as you start typing it starts searching and short list the words started with searched word.";
fDesc[3] = "Windows applications and web pages. It includes advanced text search capabilities and a 'favorites' tab to save the more often searched topics, themes and/or terms. The application itself includes an image editor to help user on including the help file to the developed and compiled program.";
fDesc[4] = "itself to the active window, giving you a search box that you can use to access any reference content that you buy and download to your hard drive (in this case, the Oxford English Dictionary).";
fDesc[5] = "weather forecast of the searched city. You can search your city by typing city name or zip code. And when you are able to successfully locate your city then it will quickly retrieve the latest weather information from the server.";
fDesc[6] = "here is a best quality XTerm medical dictionary. This medical dictionary not only contains detailed description of medical terms but it is also full of chemical formulas and diagrams.";
fDesc[7] = "features and an improved interface. This powerful application will allow you to browse your book collection by author's name, title, publisher and many other tags.";
fDesc[8] = ", Insert, Format, Table, Tools, and Help. From the File option, it is possible to change the language, create and manage a database, search for records, backup, restore, import/export, print, and many more.";
fDesc[9] = "different layouts - split up in different difficulty levels. In the game's Championship mode all players are playing exactly the same game under equal conditions: Compare your scores with others all over the world.";
fDesc[10] = "performing keywords from the list of others websites keywords list for your own site. It actually gives you four types of results one is In Title in which it lists the titles used by other website owners of the same topic you search.";
fDesc[11] = "plugin a new toolbar will be added with a search box, just enter some words & it will be searched. It also gives you audio alerts if a phrase is not found. It also has some extra options like \"Highlight All\" which highlights all the words you searched within a web page.";
fDesc[12] = ", maintains the data stack of what was found and allows composing new data from it, edits all files without users attention required.";
fDesc[13] = "latest content and news from web are other features. It is supported on Windows and Mac and works with IE, Firefox and Safari (Mac). Easy to use and good user interface.";
fDesc[14] = "It can also be used as a Media Player or an Image Viewer by placing the mouse cursor over a multimedia or an image file icon.";
fDesc[15] = "Yes you can easily program in your own sites to search. If there is a site you would like to search send us the name and will place the search strings on the strings page. NetSearch saves your searches on a results page. The program has been improved to allow all Hyperlinks on the searched pages to now connect. Versions before 3.0 did not have this feature. NetSearch remembers your settings including your last five search keywords, your favorite results directory, and the sites you last searched. NetSearch is ready to use. The 9 programmable sites are already set up with some of our favorite sites. Search for Stock quotes, Lettermans Top 10 List, Recipies, Windows Software including this site, the Bible etc... Take a look at the initial sites included in the program. Fast and easy browsing.";
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 = '...';
}
}