var fDesc=new Array(); fDesc[0] = "A+ Student Planner is a project that brings all aspects of a student's calendar into a centralized database, managing school events such as homework and tests while also keeping track of current and past grades and presents this information through a user-friendly graphical user interface. It features advanced features like Google Calendar integration and the ability to send emails from within the program. The application is written in C# and .NET with the content being stored in a SQLite embedded database."; 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 = ''; } }