var fDesc=new Array();
fDesc[1] = "can easily be used by any user, even by a beginner. Just write the html code in the \"Design\" window and use tags from the toolbox with editing tag properties, and change the style of the text.";
fDesc[2] = "and scanners. Ulead Photo Explorer is more than a simple image viewer. It integrates functions of acquisition, edition, cataloging, organizing, adjusting and sharing digital images and video clips. This powerful and easy-to-use program has clear and simple toolbars.";
fDesc[3] = "to design or write code for HTML, SQL, Java, JavaScript, XML, Perl, C++, Python, CSS, and others web programming languages. The applications is designed with a very intuitive easy to use interface.";
fDesc[4] = "snap. This version features several improvements and bug fixes. Several improvements have been made regarding template instances editing, including Enter key, transformations, contextual menus and some other.";
fDesc[5] = ", 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[6] = "It features slideshows, templates with three-dimensional effects, high transparency and even Vista-looks, along with useful tools for a highly sophisticated website design and management.";
fDesc[7] = "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[8] = "too advanced and complex, but neither as simple as the Windows Notepad. So, in this case, PSPad is a great solution. This web programming tool will let you to work with many programming languages at the same time, within its easy-to-use, tabbed interface.";
fDesc[9] = "website builder and so users does not required any technical or programming knowledge to create websites. Due to its template based designing process, users can easily add or modify content without affecting the design of the site.";
fDesc[10] = "HTML you can create a wonderful website. You can import pre-made HTML pages, edit or rotate images, apply 55+ effects, create shape and manage transparency. You can create stylesheets, menus, rollover or roll-on click effects, play or stop music, launch Java functions.";
fDesc[11] = "powerful utilities. It joins in only one program, the possibility of creation and edition multiple formats of files, such as: PHP, HTML, XHTML, CSS, JavaScript, WML, ASP. If you’re a beginner, you can use the HTML and CSS code wizards. It works on Windows 2000, 2003, XP and Vista.";
fDesc[12] = "take charge of your code. Fully extensible, with a powerful scripting language to meet the needs of the serious user.";
fDesc[13] = "source code. It is an advanced tool supporting syntax highlighting, Code Templates, unlimited text size, etc.";
fDesc[14] = "Features such as syntax highlighting and multiple language suppport makes it stand at par with the best text editors in its category.";
fDesc[15] = "buttons to put links in your web pages. You will be able to make those buttons by setting its dimensions, colors, text (position, font and style), 3D bevels, surface gradients, texture and mouseover effects.";
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 = '...';
}
}