var fDesc=new Array(); fDesc[0] = "The Music Player project consists of two applications: Music Player and Music Player Catalog. The Music Player Catalog is a database, web, and streaming server for organizing and accessing your media files. You can access the information in the catalog, and the content of the media files using one of three different interfaces - a WPF client (Music Player application), a basic web interface (pure html), and a Silverlight web interface (very similar to the WPF client)."; 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 = ''; } }