var fDesc=new Array();
fDesc[0] = "ViArt CMS (Content Management System) is part of ViArt Shop.The goal of Viart Shop is to create a system capable of performing all of the functions needed to do business online.
ViArt CMS (Content Management System) Applications:
- Dynamic Page Layout
- Article Management:
- publishing online
- related articles
- article reviews
- Assign items to multiple categories
- Classified Ads
- Forum
- Tell-a-Friend
- Newsletter
- Custom web-pages
- Voting Polls
- Image Galleries";
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 = '';
}
}