var fDesc=new Array();
fDesc[0] = "ALL In-The-Box is a superset of PDF In-The-Box. So, it offers an object-oriented programming interface, capable of describing and generating documents. This API is supplied with a collection of powerful object classes: Text, Raster Image, Vector Image, Barcode, Table, Band, Cell, Layer, various controls, Note, Attachment, Mediaclip, Signature.
To generate a document, you've just to create objects using API methods, give them properties according to your needs then put them on the document.
ALL In-The-Box runs on all Microsoft Windows 32- and 64-bit platforms (Windows 2000, 2003, XP, Vista, Windows 7). It offers three alternative programming interfaces:
* ActiveX (for Visual Studio, Visual Basic, Visual C and many other languages)
* Delphi (from Delphi 5 to Delphi 2010, in Win32 mode)
* DLL (for any other programming language).";
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 = '';
}
}