var fDesc=new Array();
fDesc[0] = "The Instant Soop Designer enables Sooplets to be created and deployed in ultra-rapid development cycles. Three demonstration Sooplets are pre-installed:
- 'DotCom HRS 4' - the Human Resource Management System
- 'Knockout Manager Gold 4' - your Tournament Personal Assistant (the Administrator password gold)
- 'Cake Central Tutorial' - organise your celebrations!
Features:
- Position command to return position of object in collection
- Isolate command to split a separated entity into constituent parts
- Weekday, WeekdayName, MonthName constants and functions
- Promote/Demote commands to nudge an object up/down in a collection
- More natural SoopScript method format can span multiple lines without continuation characters
- Cascading 1:1 Relationships in Sooplet Forms, enable sub-target collections lists to be dynamically constructed
- Detect and abort Infinite While loops";
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 = '';
}
}