var fDesc=new Array();
fDesc[0] = "This plug-in will help you to organize your xrefs in a simple way. Create shortcuts to actual xref files and preset the xref properties such as Layer, attachment, and path type. So that every time instead of browsing to the xref file, just double-click on the shortcuts to attach the xref.
If you are using Bentley Projectwise as your Document Management system, MyXrefs can be used to attach xref's from ProjectWise.";
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 = '';
}
}