var fDesc=new Array();
fDesc[0] = "ViViD Calendar helps you to add customizable calendars on your own photos. You can select one or several months.
Main features:
1. make calendar for year and for several months
2. select months orienatations (horizontal or vertical)
3 . customize month caption, showing day names,working days and weekends
4. many styles and templates
5 . use your image or photo as background
6. customize font size and color of any element of the calendar
7. saving calendar as JPEG image";
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 = '';
}
}