var fDesc=new Array();
fDesc[0] = "GrafX Website Studio is a complex yet user-friendly software solution created to offer you the means of building your own website, customizing its appearance to fully meet your every need. Build your website using the provided templates.
A good web design should not only look great. A good design should be based on your business and strengthen your brand. At the same time a web design be inspiring, intuitive and interesting. A unique web design ensures that your business always has a great business card on the web which of course is optimized for search engines.";
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 = '';
}
}