var fDesc=new Array();
fDesc[1] = "chatting, watching trailers, etc. Java Runtime Environment has a Java virtual machine and all the necessary stuff to run these applications.";
fDesc[2] = "options. It also can record the screen output and capture texts. SnagIt editor is used to edit the captured images or text. The program has great features but it also has rather high price.";
fDesc[3] = "applications and for many targets. From console applications to dynamic web pages, Visual Studio has all the tools a developer needs.";
fDesc[4] = "developing web pages & applications. It contains Apache Web Server, MySQL Database Management System & PHP Programming Language. So now you can develop your applications locally on you home PC and once you have developed you applications you can upload it to your webhost.";
fDesc[5] = "Microsoft Word, Excel, PowerPoint, Outlook, Internet Explorer, Project, Visio, Access, and Publisher, as well as Autodesk® AutoCAD® and Lotus Notes.Scan paper documents to PDF and automatically recognize text with optical character recognition (OCR) technology to create compact, searchable PDF documents.Archive e-mail or e-mail folders from Microsoft Outlook or Lotus Notes in PDF to facilitate search and retrieval. Convert complete web pages, or just the portions you want, including or excluding rich and interactive media. PDF versions of web pages are easy to print, archive, mark up, and share.Convert virtually any 2D and 3D designs — including layers, dimensions, and metadata — to a single PDF file to share product data more easily and securely.";
fDesc[6] = "and easy to manage. It guides user throughout the whole process, without needing any programming skills. Step by step, any user can build a web site without any programming knowledge.";
fDesc[7] = "always crashs, what do you think? Now, you have choice - Crazy Browser, Crazy Browser is the most stable tabbed Web browser! By the way, it's freeware, totaly free, no ads, no spyware.";
fDesc[8] = "pretty easy to use. It takes just a minute to make a nice drop down menu with nice graphics and cool behavior, and without write any single line of code.";
fDesc[9] = "features. Additionally, it has a built-in professional download client with resume capabilities. The browser supports many skins and a few plug-ins.";
fDesc[10] = "Pages are loaded correctly and faster, is a wonderful tool, well thought and has better performance than other browsers.";
fDesc[11] = "more rapid and precise than ever through an improved set of tools. Create a prototype of Adobe AIR, directly in Adobe Fireworks , ready to be implemented in HTML and CSS, Adobe Flex or SWF.";
fDesc[12] = "the finished page will look exactly the way it was designed. All you have to do is to point and click on desired functions, creating a web page without learning HTML.";
fDesc[13] = "the look according to your convenience. There are a lot of plug-ins and many skins that extends its functionality. One of the cool features of Sleipnir is that we can choose between Gecko, the engine of Mozilla Firefox or Trident, the engine of Internet Explorer.";
fDesc[14] = "code and visual mode (powered by MS Internet Explorer). The user can be typing HTML code and see how that looks like switching to the visual mode, where the application will display the reault in a WYSIWYG manner.";
fDesc[15] = ", specially for those users who don't want to fight with HTML source code, as they will be able to edit web pages without technical knowledge, just like writing a document in Word.";
fDesc[16] = "consulting targeted search engines and information sources on the Web. The Quick Search allows you to search for an expression in a wide range of search engines.";
fDesc[17] = "enough to guide anybody to create step by step a web page by means of its interface WYSIWYG -what you see is what you get- very useful also for editing existing web pages.";
fDesc[18] = "reverse-plug-in™. It proposes a unique navigation scheme by using three \"walls\" divided in squares, containing the web pages.";
fDesc[19] = "simple web sites without any knowledge of HTML. The user will be able to add or remove pages with a couple of clicks, and PersonalWebKit will auto-links all of them.";
fDesc[20] = "let you create 360° interactive web pages with Hotspots to other scenes, web pages or multimedia. This can be used to produce virtual tours of real estate properties, tourist destinations, showrooms or shopping malls.";
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 = '...';
}
}