var fDesc=new Array(); fDesc[0] = "Open Exhibits is a software development kit (SDK) for Flash that is free for museums, students, nonprofits, and educational use. Flash, Flex and Air developers can develop their own modules using ActionScript, or combine existing modules to create a custom application.
Non-programmers can add content to one of our pre-built templates to easily create a full exhibit.
The included gesture library contains dozens of the most commonly used gestures, to rapdily speed your development."; 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 = ''; } }