var fDesc=new Array(); fDesc[0] = "On launch of the application the user will be presented with the full size pitch option in the main interface window as default. Should the coach wish to change this to another pitch option, he should choose the “New Exercise” button. Organise training sessions, review fixtures and maintain player details and match"; 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 = ''; } }