function defaultCalendar() {
   var value = new Date();
   var month = value.getMonth() + 1;
   var year  = value.getYear();
   if (year == 2010) {
      month = 1;
   }
   if (year == 110) {
      month = 1;
   }
   document.getElementById(""+month).style.display='block';
}

function hideAllCalendars() {
   for (count=1; count< 13; count+=1)
      document.getElementById(''+count).style.display='none';
}

function showCalendar(month) {
   document.getElementById(month).style.display='block';
}

function showTip(tipValue) {
   document.getElementById(tipValue).style.display='block';
}




