var fDesc=new Array();
fDesc[1] = "tools and the Rhinoceros provides just the needed tools to model and document personal designs ready for rendering animation, analysis, engineering, drafting, and manufacturing or construction purposes.";
fDesc[2] = "digitize it, open it, complete texts, including lines and check boxes as well as default stamps or personalized stamps. Allows you to create a PDF file of several pages generated by combining pages from different image files.";
fDesc[3] = "vinyl LP’s and others to record it on a CD/DVD. The latest edition has improved sound source selection in Windows Vista, along with other systems having multiple sound cards.";
fDesc[4] = "This tool could be used for vectorizing of charts, drawings, maps and schemes for input to CAD or GIS systems. Also you can vectorize logotypes and other similar line art images for using in Vector Graphic Design software. An application has an option to setup a reference for images, in other words to assign a real coordinates to certain raster points. Thus, you can get vector data not only in the raster coordinates, but real geographical coordinates or in the chart coordinates. Main Features: Create centerlines and outlines Arcs and circles recognition Orthogonal lines recognition Polylines smoothing Vector editor Smart trace method for passing polylines crossings Input raster formats: BMP, GIF, TIFF, JPEG, PCX, TGA, PNG, WBMP, ICO Raster image noise filtration TWAIN32-compatible scanners support";
fDesc[6] = ", playback, and edit them with professional results. It not only recognizes every note and chord present in printed scores, but it is also capable of digitizing most handwritten music representations, including accidentals, ornaments, ties, and slurs.";
fDesc[7] = "can be saved in ASCII format, ready to use in other applications. Can read most image formats (gif, png, tiff,bmp).";
fDesc[10] = "analyze human motion activities in the quest to improve the movement technique. In addition it can provide character motion as input to ...";
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 = '...';
}
}