var fDesc=new Array();
fDesc[0] = "ParlayCard designer helps you create cool looking paper greeting cards in a matter of minutes and print them right-away on your printer. It is a professional quality greeting card designing and printing software.
ParlayCard Pro benefits:
- All major league teams are in database
- Automatically configures dates
- Simple user friendly input screen
- Point and click user interface
- Changing payout is quick and simple
- All data on card is editable by user";
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 = '';
}
}