var fDesc=new Array();
fDesc[1] = "applications and standards-based Web sites Designing Web pages in conditions equivalent to a real browser, without losing direct access to the code, thanks to the new Vista feature live Dreamweaver CS4.";
fDesc[2] = "Vista. With this program you will be able to change the boring and plain Windows default cursors and create a more appealing and funny desktop";
fDesc[3] = "styles and fonts, insert symbols and use many preferences and templates to suit your needs. You can even use the drag-and-drop option to include equations in a document, save it as an image file in various image formats, export equations from a document and much more.";
fDesc[4] = "that, it is available for MacOS systems, and if a note was created in a mobile device or using Windows it can be read as long as this application is presented.";
fDesc[5] = "professional web sites without any HTML or programming knowledge. The program includes pre-designed website templates, ready-to-use navigation bars and various objects (pictures, text, animations, sounds) for you to customize the overall layout.";
fDesc[6] = "websites. This incredible program is a standalone vector-based Web graphic authoring tool that provides professional graphics editing features.";
fDesc[7] = "any web page code. It doesnt depend on Internet pages, since it is an offline application with all the data included. The application installation comes with over 200 JavaScripts, ready to use and insert into a web page. Also HTML tested scripts for including into web page code.";
fDesc[8] = "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[9] = ", publish and manage your websites. This incredible program is a standalone vector-based Web graphic authoring tool that provides professional graphics editing features.";
fDesc[10] = "reverse-plug-in™. It proposes a unique navigation scheme by using three \"walls\" divided in squares, containing the web pages.";
fDesc[11] = "you make up stunning websites for your business, home or school in just few minutes. It´s not necessary to have any complicated HTML or other programming.";
fDesc[12] = "series of tools that help users to create pop-up menu, flash button, animated banner, etc.";
fDesc[13] = "albums. A web album is a web page that has templates of the pictures that are located on a directory. All the application really does, basically, is create an HTML thumbnail page for you to publish on your website.";
fDesc[14] = "required thanks to its easy to use interface. It is designed to let the user customize fully to their personal taste.";
fDesc[15] = "you will be able to control Live Labs Listas directly from your browser with the ability of selecting content from a web page and then add it to a list. It also enables you to highlight \"clippings\" from a web page and add them to a list.";
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 = '...';
}
}