Starting in 1996, Alexa Internet has been donating their crawl data to the Internet Archive. Flowing in every day, these data are added to the Wayback Machine after an embargo period.
";
return vCode;
}
CalendarMulti.prototype.cal_data = function() {
var vDate = new Date();
vDate.setHours(vDate.getHours()+0);
vDateTest = vDate.getMonth();
vDayTest = vDate.getDate();
vYearTest = vDate.getFullYear();
vDate.setDate(1);
vDate.setMonth(this.gMonth);
vDate.setFullYear(this.gYear);
var vFirstDay=vDate.getDay();
var vDay=1;
var vLastDay=CalendarMulti.get_daysofmonth(this.gMonth, this.gYear);
var vOnLastDay=0;
var vCode = "";
/*
Get day for the 1st of the requested month/year..
Place as many blank cells before the 1st day of the month as necessary.
*/
vCode = vCode + "
";
for (i=0; i ";
}
CheckDay = 0;
// Write rest of the 1st week
for (j=vFirstDay; j<7; j++) {
vCode = vCode + "
";
if (vOnLastDay == 1)
break;
}
// Fill up the rest of last week with proper blanks, so that we get proper square blocks
for (m=1; m<(7-j); m++) {
if (this.gYearly)
vCode = vCode + "
";
else
vCode = vCode + "
" + m + "
";
}
return vCode;
}
CalendarMulti.prototype.format_day = function(vday) {
var vNowDay = gNowMulti.getDate();
var vNowMonth = gNowMulti.getMonth();
var vNowYear = gNowMulti.getFullYear();
if (vday == vNowDay && this.gMonth == vNowMonth && this.gYear == vNowYear)
return ("" + vday + "");
else
return (vday);
}
CalendarMulti.prototype.write_weekend_string = function(vday) {
var i;
// Return special formatting for the weekendmulti day.
for (i=0; i