var fDesc=new Array();
fDesc[0] = "MapSphere is a mapping software for Windows that:downloads maps and SATellite Images from different sources (OpenStreetMap, Terraserver, LandSat, and others);stores all the mapping data on the hard drive for offline use;represents the map in 2D and 3D modes
supports GPS-receivers to track your current position;displays the location of other users and their GPS tracks provides a Chat to discuss your travels";
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 = '';
}
}