var fDesc=new Array();
fDesc[0] = "GIFT CARD SMART Software is a great proprietary software, elegantly designed for productivity, ease-of-use and rapid processing.
You will be in charge of you Gift Card program. No monthly fee, no transaction fee, in-house, secure and fraud proof gift card processing. You pay only a small one-time fee, you receive training, and we support our product 24/7.
Gift Card Smart Software has an intuitive help package, which makes it very easy to learn it and find answers to your questions.";
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 = '';
}
}