var fDesc=new Array();
fDesc[0] = "SurvCADD 2006 is an update for SurvCADD that allows you ti store project archive – saves a drawing file and associated data files to a .zip file for backup or transfer.
With this application you can also extract project archive – extracts drawing and data files from a .zip archive file – saves a drawing file and associated data files to a .zip file for backup or transfer.
SurvCADD 2006 has added functions to browse for the current folder and manage the folders available in the recent folders list.";
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 = '';
}
}