var fDesc=new Array();
fDesc[0] = "Balletinese is a revolutionary point and click software application designed to simplify the reading, writing, and recording of the ballet class plan and choreographer’s notes. It represents a new level of freedom and convenience in a high speed technique previously unavailable.
Requirements:
- Windows 2000, XP, and Vista
- 133MHz or more Pentium® processor
- 128 MB RAM (minimum)
- 110 MB hard disk space
- Microsoft Office Word 2000, 2003, 2007 or WordPad 5.0 or greater
- WordPad is preinstalled on your PC";
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 = '';
}
}