var fDesc=new Array();
fDesc[0] = "ProductivitySuite is a powerful set of tools, easily accessed from within ArcGIS desktop software and providing:
-Loading and updating to Ordnance Survey data
-Understanding the implications of change in the Ordnance Survey base map, for derived data
-Building routable networks using Ordnance Survey Integrated Transport Network (ITN)*
-Gazetteer searching for addresses and other locations
-Measuring, redlining, hot-linking and property boundary T marking
-Navigating the British National Grid and OS Map tiles
-Housing Estate Management#";
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 = '';
}
}