var fDesc=new Array(); fDesc[0] = "Weekly Calendar Planner merges the concept of a Calendar, a To-do list and Notepad into one. It lays out your To Do lists on a 7 day calendar grid, each day cell can be typed into like a text document. To check off an item on your list, you simply type // in front of the item, this will cross it out (clicking on the side bar next to the line will do the same). This lets you quickly see completed items and upcoming tasks you need to get done in the coming week."; 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 = ''; } }