var fDesc=new Array();
fDesc[0] = "PostcodeSoftware provide the most cost effective address lookup software on the market. It enables the capture and verification of addresses accurately without errors.
Main features:
-80% reduction of keystrokes entering addresses
-Save hours of wasted time
-UNLIMITED postcode lookups
-Eliminate spelling mistakes
-Create a professional image for your business";
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 = '';
}
}