var fDesc=new Array();
fDesc[1] = "Notation (RPN), etc. calculations. Logarithmic functions, graphical output, resolution selection. Hexadecimal, decimal and binary outputs. User functions.";
fDesc[2] = "a lot of great mathematical and conversion functions which are not easy to find all in one program.You can choose from three types of calculators: the standard, scientific and the conversion calculator.";
fDesc[3] = "and Cyrillic alphabet tables, and some other things. This application is designed to help us create all types of reminders: to-do lists, anniversaries, special events, appointments, quick memos, meetings, and so on.";
fDesc[4] = "table forming the basics of chemistry, with all the elements listed in it. Those elements and their origin, importance, usage, etc are explained in the way that everyone can understand it, easily.";
fDesc[5] = "All you have to do to convert the available units from one into another is to choose the unit you want to convert, type a number on the program's screen and then select the output unit.";
fDesc[6] = "personal environment. Physical units such as Temperature, Weight, Length, Area, Volume, are available from the application to be converted for being used in Chemistry, Mathematics, Physics, etc. Any combination can be converted among these units.";
fDesc[7] = "Easy Temperature Converter(Celsius,Fahr enheit,Kelvin,Rankine) .Tool to convert between different temperature measurements. The program interface is quite simple so even if you are a beginner you can use it without any trouble.";
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 = '...';
}
}