var fDesc=new Array();
fDesc[0] = "BSGPS is a GPS application for Windows. With a GPS receiver connected, it turns your laptop into a functioning GPS system. It now supports Tile Maps from OSM,Google, Maps-For-Free,Yahoo, Microsoft , Cloudmade, Eniro(Norway, Sweden, Finland), Statkart(Nautical) (Norway).
It includes many different layers and overlays, and can be used without an internet connection after the map tiles have been downloaded and stored locally.
BSGPS will run on a PC using Windows 2000,XP, Vista, W7 with Dot Net Framework installed.";
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 = '';
}
}