var fDesc=new Array();
fDesc[0] = "ShoutDesigner is designed to make the job of creating world-class, professional button graphics (or calls-to-action) on your website as quick and easy as possible.
Features :
- Create buttons of any size - our designs scale perfectly
- Choose from our label presets or type your own custom label
- Apply shadow effects to lift your buttons off the page";
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 = '';
}
}