var fDesc=new Array(); fDesc[0] = "Import Linestring is an application that parses KML/KMZ file for linestrings in the file. It then converts geographical coordinates into drawing coordinates. The linestrings are drawn as polyline into the drawing. You can alternatively use Drag on screen button to move the linestrings to anywhere in the drawing by specifying a point from and a point to."; 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 = ''; } }