var fDesc=new Array();
fDesc[0] = "What user can do with this application?
- to save data from gpx file into database
- to see data from database in two tabs: Preview and Google Maps as tracks, waypoints and routes
- a lot of other things
It's good idea to backup your database file tracksalbumjk.gdb and lang.ini file before upgrading!
- user can collect points from different files and points clicked by mouse in preview window
- clipboard can be saved as route or as waypoints (gpx file)
- current clipboard point can be replaced by other point
- order of points can be changed
- clipboard points can be drawn in preview window (as flags)
- distances between points are in distance column of clipboard and total distance is shown in status bar (so - it can be used for distance analisis)
- options for clipboard points adding and replacing are in popup menus of way/track/routepoints tables and popup menu of preview window (under righ mouse button)
- lang.ini file and translation updated";
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 = '';
}
}