var fDesc=new Array();
fDesc[0] = "Flash Text Fader Wizard is a tool that allows you to design your text fader in a few minutes and instantly see the results. Flash Text Fader features URL links, configurable margins, optional border, configurable background color, and basic html tags.
This is a cross-browser text fader. You can easily configure the text fade simply by changing the colors, text, and dimensions by using Flash Text Fader Wizard.";
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 = '';
}
}