var fDesc=new Array(); fDesc[0] = "MonoCalendar is a free and simple utility that will help you to schedule your important tasks and events within a practical and easy-to-use interface. With MonoCalendar you will be able to add as many "calendars" as you desire. Those calendars can be named as you want, and they will be differed by attractive colors, so in this way, you will easily know which events belong to a specific calendar.

In the program's interface, you will have three different views.
1. Day view, where you will see a specific day divided into hours. In those hour sections you will be able to add new events just making a double click on them.
2. Week view. Here you will see a week divided into hours and days. Of course in this view you will also be able to add new events in a similar way to Day view.
3. Month view. Here will be displayed a specific month with all the pending events you have. In this view mode you won't be able to add new events.

With the right and left arrows located on the tool bar, you will be able to go to a Previous/Next day, week or month depending on the view mode you are seeing your events."; 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 = ''; } }