var fDesc=new Array();
fDesc[0] = "Autodesk AutoCAD LT 2015 Service Pack 1 is an update that you can apply to AutoCAD LT 2015 running on all supported operating systems and languages.
The update fixes the following issues:
- Occasional crashes when using DB Connect.
- Occasional crashes when opening a drawing file when a bubble notification is still displayed.
- Occasional crashes when clicking New in the Quick Access Toolbar or the Start Drawing tile on the New Tab page.
- Occasional crashes when clicking the New Tab Plus button after adding LayerFilterComboControl or Filter in the CUI dialog box.
- Occasional crashes when inserting a block from Design Center on the second time.
- Occasional crashes when exiting AutoCAD.";
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 = '';
}
}