var fDesc=new Array();
fDesc[0] = "Business Stationery Pro is easy to use and you do
not need any design knowledge to work on it.
With this software, you can choose from hundreds of attractive pre-designed templates to work on and create stunning designs for your office stationery. Give a professional look to your office stationery, buy this software today! Check out the exciting features of Business Stationery Pro.";
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 = '';
}
}