var fDesc=new Array();
fDesc[0] = "iGO POI Explorer is an application designed to help you to save your own iGO.db to a safe place.
With this tool you can edit or join several POI databases.
You have to :
1.Start iGO POI Explorer, and import POI database you wish to edit with File/Import/POIs to file(s).
2 With the left mouse button push the selected file(s) iGO POI Database found above Sync Recycle Bin. This/these database(s) may be edited, renamed, you can change their icons, etc.
3 Edited database(s) can exported as a new, single .db directly to the connected PDA or to any selected folder in your PC.";
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 = '';
}
}