var fDesc=new Array();
fDesc[0] = "GM - Week Services is an application supporting a weekly business scenario. It has been used in a real world business environment. Consider it as a case study showing how the GM-Interface components work.
Features:
- An application supporting a weekly business scenario:
- Customers
- Customer categories
- Services
- Multiple service providers with different provisions
- Service Provider Categories
- Multiple price kinds per service
- All Categories hirarchical
- Calculations and statistics
- The application has been used in a real world business environment.
- Sample database included.
- Setup does a ready to use installation.
- Complete desktop remembered on startup.
- Complete source code included.
- Only Delphi Standard/Personal edition required to compile the source code.";
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 = '';
}
}