var fDesc=new Array();
fDesc[0] = "Microsoft MapPoint North America 2013 gives you the power to visualize business data and communicate insights with instant impact. Before you hit the road, plug in your stops and MapPoint plots the most efficient course with turn-by-turn driving directions.
System requirements
Supported operating systems: Windows 7, Windows Server 2008, Windows Vista, Windows XP
To use Microsoft MapPoint 2013, you need:
Windows® 7, Windows Vista®, Windows Server® 2008 (32 bit) or Windows XP (32 bit)
1 GB RAM for 32 bit OS or 2 GB RAM for 64 bit OS, 256MB RAM for Windows XP
2.1 GB available hard-disk space
For installation: DVD-ROM drive or high speed Internet access
1024 X 768 or higher resolution monitor
Some touch input features require a multi-touch screen and Windows 8";
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 = '';
}
}