var fDesc=new Array(); fDesc[0] = "Content Station is a program for opening, editing, and managing documents and other contents. The Home screen is your main starting point for using Content Station. It is divided into different areas (referred to as 'panes'). The Inbox shows all files that have been routed to you. The Recent Items pane shows the last 20 items that you have worked on. The Applications pane shows all Applications that you can use."; 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 = ''; } }