var fDesc=new Array();
fDesc[0] = "Greeting Card Factory Express is a superb program for creating greeting cards.
Features:
- Millions of Unique Possibilities
- NEW Cards and Templates! 4,000 Exclusive Greeting Cards and Projects
- NEW Graphics! 15,000 Premium Graphics
- Premium Fonts
- Photorealistic Images
- Electronic Greetings
- Built-in Advanced Photo Editor
- 4x8 Photo Cards
- Brand New Look - easier than ever to use
- Advanced Search Functionality
- NEW! Drag and Drop Text Effects";
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 = '';
}
}