var fDesc=new Array();
fDesc[1] = "developed, inserts pictures, tables, hyperlinks, anchors, forms, PHP code, comments, etc. for making web pages in a very quick manner, editing them in What You See Is What You Get (WYSIWYG) mode, so anything is done is immediatly seen.";
fDesc[2] = "desire to have many tools together in a single application. Page preview at the same time, displaying the inserted changes in code. The application can open multiple web page files. The split view of the editor allows the user to copy and paste code between two different page windows.";
fDesc[3] = "Basic HTML Document, CSS (Cascade Style Sheets), HTML 4.01 and 4.01 Transitional and XHTML Strict, Mobile and Transitional. It also has design elements, like scroll bars, forms, FAQs and glossaries, as well as Dynamic Pages Templates (Java, JSP, PHP and XML) and Legal Forms.";
fDesc[4] = ", 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[5] = "pages in four modes: Editor mode: Displays the page the way will appear on the browser. Source: Application displays the source page. Preview: Shows the page the way a browser will displays it. Split: In this mode, the screen is divided in visual and code.";
fDesc[6] = "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[7] = "ways: HTML code, design graphical view and a true preview of the document in a built-in browser style or on a true browser. It offers three add-ons tools, divided in categories and displayed on tags, to create Java, Javascript, or DHTML buttons, menus, banners and effects.";
fDesc[8] = "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[9] = "and edit new language files, syntax files and script files and even write your own web page.It is also possible to convert text to a different character sets.";
fDesc[10] = "utilities to work with HTML, CSS, ASP, PHP and JavaScript. It checks syntax, displays highlighted text and includes a CSS editor.";
fDesc[11] = "What You Get) environment using both CSS or tabled layouts. CoffeeCup HTML Editor's design emphasizes simplicity and ease of use. You'll find that you can create great looking websites almost instantly with virtually no learning curve!";
fDesc[12] = "scripts or the selected part of it. The application scans the web page HTML code checking invalid tags, invalid tags attributes or values, misspelled sentences and invalid characters. It alse looks for quotation marks that might be missing or mismatched, missing tags, all over the HTML code.";
fDesc[13] = "creating web pages using HTML, XHTML, DHTML, as well as inserting Scripts anywhere in the page such as Javascript, VBScript, and all kinds of facilities for developing web pages using CSS 2.0, PHP 5, ASP, XML, JSP, SSI, WML 1.1, HDML 3.0, SMIL, PERL, SQL, etc.";
fDesc[14] = "save you time and unleash your creativity.";
fDesc[15] = "dedicated web page editor that makes it very easy to translate web pages from one language into another.";
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 = '...';
}
}