var fDesc=new Array(); fDesc[0] = "Magic Calendar Maker is a very easy-to-use utility for creating and printing calendars for one month. The user only has to select the month and year for which he or she wants the calendar. The starting day of a week can also be chosen (Sunday or Monday). All the rest is done by the program automatically! Weekends can be colored with grey color. The output is a HTML or a PDF calendar that can be printed out from your favorite web browser or from Adobe Reader."; 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 = ''; } }