var fDesc=new Array();
fDesc[0] = "LoadPlanner Desktop is a free application client and a GUI component of the Enterprise, Client/Server, and Application configurations.
Main Features:
- Intuitive, spreadsheet-based professional grade GUI with dynamic help.
- Interactive 3D graphics with animation and step-by-step controls.
- Extremely fast Load Processor with configurable optimization depth.
- Three-tier load processing: packaging - palletizing - container/trailer loading.
- Import/export data in XML, MS Excel (XLS) or tab-delimited text formats.
- *NEW* Seamless connectivity to external databases, all major DBMS and ODBC.
- *NEW* Direct data import from Excel spreadsheet.
- Variety of rules and constraints for complex loading operations.
- Irregular trailer shapes - "gooseneck", "dropdeck", "furniture van", etc.
- Configurable report generator, user-defined detail levels and layout.
- Reports in HTML format for easy printing, web publishing and conversion into PDF or DOC.";
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 = '';
}
}