var fDesc=new Array();
fDesc[0] = "MapToaster Topo New Zealand is New Zealand's only topographical mapping suite, with options for your computer, GPS and iPhone/iPad, including:
- all the rich detail of the LINZ topo maps - seamless across NZ. Now includes Topo50 and Topo250 map series.
- 1:50,000 though 1:2 million scale maps on your PC and iPhone/iPad and 1:50,000 on your GPS
- integrated aerial and satellite imagery with transparent topomap overlays, included as standard on your PC
- easy-to-use software
- proven and widely-used technology
- incredibly friendly and helpful technical support.";
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 = '';
}
}