var fDesc=new Array();
fDesc[0] = "Audio Game Hub is a set of 11 experimental arcade video games that use audio as their primary interface, making them accessible for both sighted and non-sighted users. Audio Game Hub was created in cooperation with the Gamification Lab of Leuphana University Lüneburg and the School of Computer and Mathematical Sciences of Auckland University of Technology.";
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 = '';
}
}