var fDesc=new Array(); fDesc[0] = "RamCal is a perpetual calendar that gives the day of the week for any given date.

It's a universal calendar that converts dates into the following calendars : Gregorian, Julian, Julian with Roman style (kalends, nones, ides), French republican (as well as a simulation of the continuation of this calendar), Jewish and Muslim.

You just have to enter a date in one of these calendars to automatically see the conversion in the other calendars and to see the day of the week for the Julian, Gregorian and French republican calendars.
It can also :

- calculate the following movable Christian holy days : Easter, Ascension, Pentecost and Ash Wednesday,
- manage the different dates for the beginning of the gregorian calendar,
- tell the saints for each day (current and traditional dates),
- tell the french republican feasts,
- find a day from a given saint name."; 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 = ''; } }