var fDesc=new Array();
fDesc[0] = "Coupon Fusion is an online service that allows you to create printable coupons for your website. No more need to call the web designer when you want to make a change!
Main features:
- Lets you assign dates when the coupon is visible on your site. Your coupon is automatically visible during this time.
- Make changes right from our software! You don't have to know anything about web design";
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 = '';
}
}