var fDesc=new Array();
fDesc[0] = "With the release of SolidWorks 2012, they have developed a method to update your customers installations in the field to allow the existing installations of SURFCAM 5_2 to read these new version files.
If you are opening a SolidWorks 2012 file and nothing Imports into your SURFCAM session you will need to install this SolidWorks 2012 Document Manager Patch.";
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 = '';
}
}