var fDesc=new Array();
fDesc[0] = "The CyberBuddy Story Builder is a free tool that may be used to create text documents that can be read by CyberBuddy
This tool can create documents to be read from a hard drive or from a website.
When the document is saved with an extension of .cbb, Windows will recognize it as a CyberBuddy document and will "hand" the document to CyberBuddy to be read.
A CyberBuddy text document can be viewed or edited in something as simple as Windows Notepad.
The format of the document is simply a text document with some "command tags" that direct the Activities of the Agent character.
The CyberBuddy Story Builder simplifies the task of adding the command tags and gives a way to test the document as it is created.";
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 = '';
}
}