var fDesc=new Array();
fDesc[0] = "C.O. Finder Plus+ is a neat and efficient application find, sort, list and display central offices and data includes entire North American numbering plan map C.O.s and routes.
Main features:
- Display/Print Data in Grid Form.
- Display CO's on a Map.
- Calculate Local Loop Distance From an Address.
- Find the Closest CO to an Address.
- Convert V H to Latitude Longitude.
- Convert Latitude Longitude to VH.
- Batch Process Coordinates.";
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 = '';
}
}