var fDesc=new Array();
fDesc[0] = "Extension Pack/Library Upgrade can be used for current Mathcad 12 Extension Pack licensees only.
The following utilities allows you to install a Mathcad 13 version of the listed Extension Pack/Library, if you currently have a license for the Mathcad 12 Extension Pack/Library. The utility checks for the presence of the Mathcad 12 Extension Pack/Library on your machine or on a CD. Download the utility to your desktop or a local folder and double-click the icon to run it. You may be prompted to insert the Extension Pack/Library CD into your CD-ROM drive. Note that you must install Mathcad 13 first.
Note: When you insert the Mathcad 12 Extension Pack/Library CD into your CD-ROM drive, it will attempt to auto-install. If you are not interested in installing or re-installing the Mathcad 12 Extension Pack/Library simply cancel out of its installation program. Then, proceed with the Mathcad 13 Extension Pack/Library installation as usual.";
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 = '';
}
}