");
this.wwrite("Year : " + this.gYear);
this.wwrite("
");
// Show navigation buttons
var prevYYYY = parseInt(this.gYear) - 1;
var nextYYYY = parseInt(this.gYear) + 1;
this.wwrite("
");
// Get the complete calendar code for each month..
var j;
for (i=11; i>=0; i--) {
if (isIE)
this.wwrite("");
else if (isNav)
this.wwrite("");
this.gMonth = i;
this.gMonthName = Calendar.get_month(this.gMonth);
vCode = this.getMonthlyCalendarCode();
this.wwrite(this.gMonthName + "/" + this.gYear + "
");
this.wwrite(vCode);
if (isIE)
this.wwrite("
");
else if (isNav)
this.wwrite("");
}
this.wwrite("