var fDesc=new Array();
fDesc[0] = "Design your good looking business cards easily with Business Card Designer Pro. Create your own business cards and print on your own printer!
Main features:
- Quick and Easy Design: Select and draw shapes and text. Resize, tilt, change color, fill with gradient color or do anything with your design elements.
- Convenient Design tools: Can draw rectangle/triangle/circle or any freehand lines and shapes.
- Add Background picture: Use the supplied backgrounds or use your own.";
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 = '';
}
}