var fDesc=new Array();
fDesc[0] = "Oberon Fit Objects To Path is an add-on for CorelDRAW and Corel DESIGNER which allows you to arrange selected shapes along any curve path.
Features
To fit objects to a path, just select all the objects in the order you want them to appear on the path and then select the curve to fit the objects to. The curve must be selected last!
A retail version of CorelDRAW or Corel DESIGNER is required.
You must ensure that Visual Basic for Applications is installed.";
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 = '';
}
}