var fDesc=new Array(); fDesc[0] = "Visionaire Studio is a tool for the creation of point-and-click adventure games. The main purpose of Visionaire is to empower fans of adventure games to create their own games, without requiring extensive programming skills. Therefore Visionaire provides a huge set of existing "Actions" that can be combined in all imaginable ways. This allows people to develop their own games without writing a line of code. The visual editor of the “Visionaire Studio“ authoring system was created with a clear layout and intuitive user interface in mind."; 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 = ''; } }