var fDesc=new Array();
fDesc[1] = "provides you with range of features like formatting options, highlight keywords, background and font color, font styles, print option, save as GIF option, Auto copy and many more.";
fDesc[2] = "browse inside archives (ZIP, ARJ etc), make searches, automatically extract descriptions from documents and much more.";
fDesc[3] = "and contain information about them. You can use Notepad to open NFO files, although they don't always look very well. But NFOpad is a freeware text editor and viewer especially designed for those files. Small, handy and specific.";
fDesc[4] = "in a tooltip window when mouse pointer is hovered over a file in Windows Explorer.";
fDesc[5] = "vendors and webmasters as quickly and as concisely as possible.";
fDesc[8] = "program catalogs contents of your media and makes it available for offline browsing and searching.";
fDesc[9] = "written to help the people who needs to see the ASCII art in the old-fashioned way the DOS does.";
fDesc[10] = ", making it a great replacement for your ordinary default calculator. You can see, edit and print the calculations log and support your documents.";
fDesc[11] = "have ever downloaded Zip archives, you may noted that they contain NFO files. These files can be difficult to read in their conventional way. So, ViewNFO is the program that will help you to read information of an NFO file as well as TXT and DIZ files.";
fDesc[12] = "size, and directory name if using Dir mode. or the file_id.diz if using the zip mode. Also include header and footer with totals.";
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 = '...';
}
}