var fDesc=new Array(); fDesc[0] = "Personal Stock Monitor is a desktop companion for online investors. Use the built-in portfolio manager to automatically track the value of your holdings to show you how the days events are affecting your investments. It pulls quotes and news headlines from popular financial web sites around the world, organizes them into convenient views, and displays them in a scrolling desktop ticker bar."; 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 = ''; } }