var fDesc=new Array();
fDesc[0] = "Trellian WebPage is a standard HTML editor with basic features.
Main Features:
-Intuitive Interface.
-Imports pages compatible with today's browsers.
-Absolute positioning of HTML elements.
-Color Highlighted HTML Editor.
-Meta Tag editor.
-Drag & drop interface.
-Imports all major image formats including PNG & JPEG.
-Support for current Internet technologies.
-Built-in document spellchecker.
-Support for 1000's of Photoshop Plugins.
-Easy image conversion and resampling tools with unlimited undo's.
-Create Search engine friendly pages, so that your site can be found.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}