var fDesc=new Array();
fDesc[1] = "videos. AviSynth works as a frameserver, providing instant editing without the need for temporary files.AviSynth itself does not provide a graphical user interface (GUI), but instead relies on a script system that allows advanced non-linear editing.";
fDesc[2] = "following the orders of a mysterious agency. The game includes more than 20 missions in all, which you'll play in a linear order, one after the other.The graphics of this game are great enough and particularly the sound has been improved so as to make it really enjoyable.";
fDesc[3] = "application physically defragments the Windows registry file to give it the proper linear structure.";
fDesc[4] = "audio and video. You may capture your video footage directly, using a web-cam attached to your computer. You may then edit the audio and video tracks of this media file, separately and independently of each other.";
fDesc[5] = "entirely on stealthiness. The previous games' stories are mentioned during the development of this one, in which 47 discovers that he and his employer are being threatened by some other mysterious agency.";
fDesc[6] = "VirtualDub is a video capture/processing utility for 32-bit Windows platforms (95/98/ME/NT4/2000/XP) , licensed under the GNU General Public License (GPL). It lacks the editing power of a general-purpose editor such as Adobe Premiere, but is streamlined for fast linear operations over video. It has batch-processing capabilities for processing large numbers of files and can be extended with third-party video filters. VirtualDub is mainly geared toward processing AVI files, although it can read (not write) MPEG-1 and also handle sets of BMP images.";
fDesc[7] = "in a linear way (cutting and pasting fragments freely and works both as standalone application and as plug-in for the most common video edition software, such as Sony Vegas, Pure Motion EditStudio and Adobe Premiere.";
fDesc[8] = ", much harder when Pixar has decided that it is going to have aspirations of becoming the best chef around Paris. This game was developed by a company which has wisely managed to connect with one of the most demanding audiences of nowadays market: children.";
fDesc[9] = ", sometimes find nice landscape, buildings, monuments, streets, but with some obstacle in the way, thus preventing us to take an otherwise perfect picture. Now we can take that picture and edit it with Wire Pilot.";
fDesc[10] = "features give full command over editing and mixing videos, photos and sounds altogether. It supports all common video formats like AVI, WMA, WAV, 3GP and supports all common photo formats like BMP, GIF, and JPEG.";
fDesc[11] = ", graphs, unit conversion, interpolation, polynomial regression, linear algebra, systems of linear, nonlinear and differential equations, optimization.";
fDesc[12] = "coupled non-linear algebraic equations. ESS can also be used to solve initial value differential equations, do linear and non-linear regression, unit conversion, unit consistency checking, optimization, and uncertainty analysis, and produce publication-quality plots.";
fDesc[13] = "curve fitting process for you in a single step with its built-in equations, enabling you to find the ideal model for your 2D data. TableCurve 2D includes equations from single linear to high order Chebyshev polynomials for data modeling and critical research.";
fDesc[14] = "applications will automate, in a single step, the surface fitting process for you and enable you to find the ideal model for your 3D data within seconds using its built-in, frequently encountered, equations. The program can fit and rank around 36,000 out of its over 450 million equations.";
fDesc[15] = ", intuitive graphical user interface to direct specify or import and solve any type of constrained optimization problems arising in various industrial, financial and educational areas.A constrained optimization problem is stated as a linear program that size is unlimited.The linear program solver is based on interior-point method (Mehrotra predictor - corrector algorithm) and optimized for large sparse linear programs. The solver exploits a sparsity of the constraint matrix by implementing state-of-art ordering algorithm to preserve the matrix sparsity and hence reduce the calculation time dramatically. Almost every stage of the linear programming calculation can be saved in the debug files or traced for the deep analysis. The user can specify the linear program constraints in a dense form using the grids or in a sparse form using the particular constraints editor. The dense form is...";
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 = '...';
}
}