var fDesc=new Array();
fDesc[0] = "BlueMailCentral can reduce the cost of your corporate postal mail by up to 55% or even more in some cases. Sending the mail digitally, as close as possible, to the destination where it will be printed and sent out saves a lot of time, effort and money.";
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 = '';
}
}