var fDesc=new Array();
fDesc[0] = "Electos is a powerful Content Management System. Simplicity - It is so easy to maintain your own website, without compromising the full capabilities of the web. It is as easy as you would use Microsot Word.
The Electos Publisher is a maintenance-free engine that takes care of navigation, scheduling publications as planned, keep an extremely fast search-engine up to date.
The templates are a lot more advanced and contain the latest techniques available in Electos. Its dropdown menu and bread crumb trail allow for quick navigation through the pages. Special pages usually contain a sidebar showing valuable information related to the main topic.";
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 = '';
}
}