var fDesc=new Array();
fDesc[0] = "Sable allows Vensim developers to create professional user interfaces for their models. You can make use of enhanced graphics, animation and multi-media in an easy to use, drag-and-drop environment.
Sable Runtime allows applications created using Sable to be run but not modified. Sable Runtime must be distributed to end users as part of your solution, unless a licensed copy of Sable Developer is owned by the end user. These files are packaged with the model files to provide a complete, distributable solution.";
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 = '';
}
}