var fDesc=new Array();
fDesc[0] = "Ordnance Survey Digital Mapping on CDROM. Plan, navigate, analyse and print routes on your Windows PC.
TrackLogs maps include genuine Ordnance Survey digital data and are visually identical to the paper Explorer and Landranger maps.
TrackLogs map scales include 1:25,000(Explorer), 1:50,000(Landranger) and 1:250,000(Roadmap). All maps install into the same TrackLogs application so you can flick between map scales.";
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 = '';
}
}