var fDesc=new Array();
fDesc[0] = "To integrate these objects into your own customized GPS application you can use
programming environments such as the following Microsoft development systems:
- Visual Studio® 2005
- Visual C#®
- Visual C ®
- Visual Basic®
The applications you develop can be used on any computer running one of the
following operating systems:
- Windows Mobile® version 5.0 software for Pocket PC
- Windows Mobile 2003 software for Pocket PCs
- Windows® XP
- Windows 2000";
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 = '';
}
}