var fDesc=new Array();
fDesc[1] = "high-quality graphics for the Web. Engineered from the ground up to address the needs of professional Web designers, the new tool incorporates such advanced features as a visual export preview, complete control over compression and color palettes, automatic generation of button states and JavaScript rollovers, as well as text and effects which are editable all the time. Fireworks allows designers to create the most compact graphics and GIF animations in the fewest steps. Other Web-focused Fireworks features include the ability to 'slice' an image for faster downloading, then export the component graphics plus the HTML table to re-assemble them in the viewers browser. Fireworks provides a built-in 'Image Map layer' to facilitate assignment of URL links, as well as a button generation feature which automatically produces up, down, rollover, and hit states for button graphics, along with...";
fDesc[2] = "developers to rapidly create connected applications that deliver the highest quality, rich user experiences. With Visual Studio 2008, organizations will find it easier than ever before to capture and analyze information to help them make effective business decisions.";
fDesc[3] = "deliver superior quality on the Web. With this program you can Reduce complexity and ease data integration by using powerful design tools and task panes to quickly incorporate XML data.";
fDesc[4] = "Very original backgrounds. You'll find that the difficulty increases level after level till you'll think they are impossible to finish but even then you won't be able to leave the game for a long while!";
fDesc[5] = "unique set of features including many visual options, smart behaviors, easy-to-control Glass with on-screen HUD.";
fDesc[6] = "the following functions: intelligent coding, debugging stratified interactive, visual design of the distribution of the elements of the user interface.";
fDesc[7] = "for motion graphic designers, animators and visual effects artists. combustion 2 is a powerful, resolution-independent , vector paint, animation and compositing solution for multi-format work from the web to video and HDTV to feature film. combustion 2 is available for both Apple Macintosh (OS 9.x, OS X) and Windows (NT, 2000) systems and features an advanced object-oriented architecture with extensive caching, multiple views and real-time loop playback. combustion 2 is setting a new standard for interactive performance on the desktop.";
fDesc[8] = "corresponding color code (HTML, RGB, C++, Visual Basic, etc) of any color you see in your screen. With Color Cop you can also increase up to 16 times any area of the screen since it has an incorporated zoom tool, so you will not miss any detail in a graphic no matter its size.";
fDesc[9] = "color coded. A very useful Visual Editor is included in the application for watching the conversion results and for possible necessary retouches on the generated image. Output resulting image can be resized for matching any picture container.";
fDesc[10] = "working with HTML, JavaScript, CSS, etc.A built-in browser, FTP client and a number of wizards provide flexible tag and style insertion.";
fDesc[11] = "software developers, web designers and other professionals.";
fDesc[12] = "create and manage database for MySQL, Oracle, MS SQL, etc. in the easiest way. This software also provides a complete range of tools, commands, and options that can be customized to our needs and preferences.";
fDesc[13] = "all your 3D models will be less complex and more useful when being processed in real-time visualization systems. With VizUp you can easily make the 3D models well balanced 3D and optimized with reduced number of polygons.";
fDesc[14] = "DataBinding, full viewstate support, highly customizable styles and behaviors, load-on-demand, checkboxes, multiple postback events.";
fDesc[15] = "required by supported technologies, you write functional code only. Supports Outlook, Excel, Word, PowerPoint, etc.";
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 = '...';
}
}