var fDesc=new Array();
fDesc[0] = "MetaProducts Web Studio is a universal project-oriented tool for developing and supporting Web sites.
The package is based on a powerful text editor, MetaProducts Visual Workshop, that provides flexible development tools for working with HTML/XHTML, JavaScript, CSS and other Web technologies.
MetaProducts Visual Workshop has powerful, easily customizable syntax highlighting and the ability to browse or execute a document without leaving the edit window. It also permits defining any commands (tags) with a built-in macros language. Advanced project management, built-in browser and FTP client, powerful Find with regular expression support and Replace through multiple files boost your development speed.
A number of Wizards provide flexible tag insertion for the most complex HTML tags. The built-in Style Builder makes style sheet use easy and an expansive online help system supplies information about the most current Web technologies such as HTML, CSS and JavaScript.";
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 = '';
}
}